[DEVMGR]
authorGed Murphy <gedmurphy@reactos.org>
Tue, 16 Jun 2015 12:18:01 +0000 (12:18 +0000)
committerGed Murphy <gedmurphy@reactos.org>
Tue, 16 Jun 2015 12:18:01 +0000 (12:18 +0000)
Make the header c++ friendly

svn path=/trunk/; revision=68162

reactos/include/reactos/dll/devmgr/devmgr.h

index 169ac50..3c1bb20 100644 (file)
@@ -1,6 +1,10 @@
 #ifndef __DEVMGR__H
 #define __DEVMGR__H
 
+#ifdef __cplusplus
+extern "C" {
+#endif
+
 BOOL
 WINAPI
 DeviceManager_ExecuteA(HWND hWndParent,
@@ -178,4 +182,8 @@ DevicePropertiesExW(IN HWND hWndParent  OPTIONAL,
 #define DevicePropertiesEx DevicePropertiesExA
 #endif
 
+#ifdef __cplusplus
+}
+#endif
+
 #endif /* __DEVMGR__H */