Author: gedmurphy Date: Wed Sep 23 09:04:39 2015 New Revision: 69326
URL: http://svn.reactos.org/svn/reactos?rev=69326&view=rev Log: [INCLUDES] - Fix linking with c++ modules
Modified: trunk/reactos/include/reactos/dll/newdevp.h
Modified: trunk/reactos/include/reactos/dll/newdevp.h URL: http://svn.reactos.org/svn/reactos/trunk/reactos/include/reactos/dll/newdevp... ============================================================================== --- trunk/reactos/include/reactos/dll/newdevp.h [iso-8859-1] (original) +++ trunk/reactos/include/reactos/dll/newdevp.h [iso-8859-1] Wed Sep 23 09:04:39 2015 @@ -7,6 +7,10 @@
#ifndef __NEWDEVP__H #define __NEWDEVP__H + +#ifdef __cplusplus +extern "C" { +#endif
BOOL WINAPI @@ -24,4 +28,8 @@ IN BOOL bUpdate, OUT LPDWORD lpReboot);
+#ifdef __cplusplus +} +#endif + #endif /* __NEWDEVP__H */