remove the c++ comment instead of converting it because it

violates the coding style for header files - the enclosing 
endif is not commented.
This commit is contained in:
kingdl802
2009-04-09 15:47:47 +00:00
parent ed5807103f
commit 6a2ca24857
+9 -1
View File
@@ -13,7 +13,15 @@
#define DLL_EXPORT __declspec(dllimport)
#endif
#ifdef __cplusplus
extern "C" {
#endif /* __cplusplus */
void DLL_EXPORT SomeFunction(
const LPCSTR sometext);
#endif // __MAIN_H__
#ifdef __cplusplus
}
#endif /* __cplusplus */
#endif