winmm: Make mmddk.h C++ compatible.
This commit is contained in:
parent
dd3e2be810
commit
2264b0c556
|
@ -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 */
|
||||
|
|
Loading…
Reference in New Issue