winmm: Make mmddk.h C++ compatible.
diff --git a/include/mmddk.h b/include/mmddk.h
index 75840a0..092a5f7 100644
--- a/include/mmddk.h
+++ b/include/mmddk.h
@@ -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 @@
 
 #include <poppack.h>
 
+#ifdef __cplusplus
+}
+#endif
+
 #endif /* __MMDDK_H */