From 4a45379380463eab82c0ad6ba89c205e8b6de9ae Mon Sep 17 00:00:00 2001 From: Phillip Susi Date: Sun, 24 Jun 2001 17:58:13 +0000 Subject: [PATCH] Added missing extern "C" svn path=/trunk/; revision=2006 --- reactos/include/ntdll/rtl.h | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/reactos/include/ntdll/rtl.h b/reactos/include/ntdll/rtl.h index 024b03abc40..7d41be0a5bd 100644 --- a/reactos/include/ntdll/rtl.h +++ b/reactos/include/ntdll/rtl.h @@ -1,4 +1,4 @@ -/* $Id: rtl.h,v 1.30 2001/06/22 12:40:45 ekohl Exp $ +/* $Id: rtl.h,v 1.31 2001/06/24 17:58:13 phreak Exp $ * */ @@ -8,6 +8,11 @@ #include #include +#ifdef __cplusplus +extern "C" { +#endif /* __cplusplus */ + + typedef struct _CRITICAL_SECTION_DEBUG { WORD Type; WORD CreatorBackTraceIndex; @@ -548,8 +553,15 @@ InterlockedExchangeAdd ( PLONG Addend, LONG Increment ); + + #endif /* __NTDRIVER__ */ +#ifdef __cplusplus +} +#endif /* __cplusplus */ + + #endif /* __INCLUDE_NTDLL_RTL_H */ /* EOF */