mirror of
https://github.com/reactos/reactos.git
synced 2025-07-26 23:14:17 +00:00
[XDK] Addendum to r66499.
svn path=/trunk/; revision=66501
This commit is contained in:
parent
8257e43a23
commit
014d37e58e
1 changed files with 13 additions and 0 deletions
|
@ -2971,10 +2971,23 @@ RtlQueryDepthSList(
|
||||||
#define RTL_RUN_ONCE_ASYNC 0x00000002UL
|
#define RTL_RUN_ONCE_ASYNC 0x00000002UL
|
||||||
#define RTL_RUN_ONCE_INIT_FAILED 0x00000004UL
|
#define RTL_RUN_ONCE_INIT_FAILED 0x00000004UL
|
||||||
|
|
||||||
|
#define RTL_RUN_ONCE_INIT {0}
|
||||||
|
|
||||||
typedef union _RTL_RUN_ONCE {
|
typedef union _RTL_RUN_ONCE {
|
||||||
PVOID Ptr;
|
PVOID Ptr;
|
||||||
} RTL_RUN_ONCE, *PRTL_RUN_ONCE;
|
} RTL_RUN_ONCE, *PRTL_RUN_ONCE;
|
||||||
|
|
||||||
|
typedef DWORD WINAPI RTL_RUN_ONCE_INIT_FN(PRTL_RUN_ONCE, PVOID, PVOID*);
|
||||||
|
typedef RTL_RUN_ONCE_INIT_FN *PRTL_RUN_ONCE_INIT_FN;
|
||||||
|
|
||||||
|
NTSYSAPI
|
||||||
|
DWORD
|
||||||
|
WINAPI
|
||||||
|
RtlRunOnceComplete(
|
||||||
|
PRTL_RUN_ONCE,
|
||||||
|
DWORD,
|
||||||
|
PVOID);
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#define RTL_CONDITION_VARIABLE_INIT {0}
|
#define RTL_CONDITION_VARIABLE_INIT {0}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue