Make the header c++ friendly

svn path=/trunk/; revision=68162
This commit is contained in:
Ged Murphy 2015-06-16 12:18:01 +00:00
parent bfe3738fc9
commit a68dd56665

View 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 */