mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 01:55:19 +00:00
Added missing extern "C"
svn path=/trunk/; revision=2006
This commit is contained in:
parent
b5686dbcd2
commit
4a45379380
1 changed files with 13 additions and 1 deletions
|
@ -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 <napi/teb.h>
|
||||
#include <ddk/ntddk.h>
|
||||
|
||||
#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 */
|
||||
|
|
Loading…
Reference in a new issue