Commit in reactos/include/ddk on MAIN
ccfuncs.h+19-41.9 -> 1.10
Fix import/export linkage mismatches.

reactos/include/ddk
ccfuncs.h 1.9 -> 1.10
diff -u -r1.9 -r1.10
--- ccfuncs.h	19 Jun 2004 05:04:08 -0000	1.9
+++ ccfuncs.h	21 Aug 2004 20:18:07 -0000	1.10
@@ -1,14 +1,25 @@
 
 #ifndef _NTOS_CCFUNCS_H
 #define _NTOS_CCFUNCS_H
-/* $Id: ccfuncs.h,v 1.9 2004/06/19 05:04:08 sedwards Exp $ */
+/* $Id: ccfuncs.h,v 1.10 2004/08/21 20:18:07 tamlin Exp $ */
+
+#ifdef __cplusplus
+extern "C" {
+#endif
+
 
 /* exported variables */
 /* these should be in the KPCR */
 
-extern ULONG CcFastMdlReadWait;
-extern ULONG CcFastReadNotPossible;
-extern ULONG CcFastReadWait;
+#ifdef __NTOSKRNL__
+extern ULONG EXPORTED CcFastMdlReadWait;
+extern ULONG EXPORTED CcFastReadNotPossible;
+extern ULONG EXPORTED CcFastReadWait;
+#else
+extern ULONG IMPORTED CcFastMdlReadWait;
+extern ULONG IMPORTED CcFastReadNotPossible;
+extern ULONG IMPORTED CcFastReadWait;
+#endif
 
 BOOLEAN
 STDCALL
@@ -349,6 +360,10 @@
 	IN	BOOLEAN		Wait
 	);
 
+#ifdef __cplusplus
+}
+#endif
+
 #endif
 
 /* EOF */
CVSspam 0.2.8