winmm: Make mmddk.h C++ compatible.

This commit is contained in:
Francois Gouget 2007-08-30 16:16:07 +02:00 committed by Alexandre Julliard
parent dd3e2be810
commit 2264b0c556
1 changed files with 8 additions and 0 deletions

View File

@ -26,6 +26,10 @@
#include <mmsystem.h>
#include <winbase.h>
#ifdef __cplusplus
extern "C" {
#endif
#define MAX_MIDIINDRV (16)
/* For now I'm making 16 the maximum number of midi devices one can
* have. This should be more than enough for everybody. But as a purist,
@ -465,4 +469,8 @@ HANDLE WINAPI mmGetCurrentTask(void);
#include <poppack.h>
#ifdef __cplusplus
}
#endif
#endif /* __MMDDK_H */