mirror of
https://github.com/reactos/reactos.git
synced 2024-12-31 19:42:51 +00:00
[NDK] Make kefuncs.h C++ aware
This commit is contained in:
parent
31afbf1054
commit
5466fc13a3
1 changed files with 9 additions and 0 deletions
|
@ -26,6 +26,11 @@ Author:
|
||||||
#include <ketypes.h>
|
#include <ketypes.h>
|
||||||
#include <section_attribs.h>
|
#include <section_attribs.h>
|
||||||
|
|
||||||
|
#ifdef __cplusplus
|
||||||
|
extern "C"
|
||||||
|
{
|
||||||
|
#endif
|
||||||
|
|
||||||
#ifndef NTOS_MODE_USER
|
#ifndef NTOS_MODE_USER
|
||||||
|
|
||||||
//
|
//
|
||||||
|
@ -782,3 +787,7 @@ ZwYieldExecution(
|
||||||
VOID
|
VOID
|
||||||
);
|
);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#ifdef __cplusplus
|
||||||
|
} // extern "C"
|
||||||
|
#endif
|
||||||
|
|
Loading…
Reference in a new issue