From: Ged Murphy Date: Tue, 16 Jun 2015 12:18:01 +0000 (+0000) Subject: [DEVMGR] X-Git-Tag: backups/colins-printing-for-freedom@73041~15^2~65 X-Git-Url: https://git.reactos.org/?p=reactos.git;a=commitdiff_plain;h=a68dd56665e9494078a435f4394897b665975110 [DEVMGR] Make the header c++ friendly svn path=/trunk/; revision=68162 --- diff --git a/reactos/include/reactos/dll/devmgr/devmgr.h b/reactos/include/reactos/dll/devmgr/devmgr.h index 169ac5043fb..3c1bb20c874 100644 --- a/reactos/include/reactos/dll/devmgr/devmgr.h +++ b/reactos/include/reactos/dll/devmgr/devmgr.h @@ -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 */