Author: akhaldi Date: Sat Feb 28 16:00:09 2015 New Revision: 66501
URL: http://svn.reactos.org/svn/reactos?rev=66501&view=rev Log: [XDK] Addendum to r66499.
Modified: trunk/reactos/include/xdk/winnt_old.h
Modified: trunk/reactos/include/xdk/winnt_old.h URL: http://svn.reactos.org/svn/reactos/trunk/reactos/include/xdk/winnt_old.h?rev... ============================================================================== --- trunk/reactos/include/xdk/winnt_old.h [iso-8859-1] (original) +++ trunk/reactos/include/xdk/winnt_old.h [iso-8859-1] Sat Feb 28 16:00:09 2015 @@ -2971,9 +2971,22 @@ #define RTL_RUN_ONCE_ASYNC 0x00000002UL #define RTL_RUN_ONCE_INIT_FAILED 0x00000004UL
+#define RTL_RUN_ONCE_INIT {0} + typedef union _RTL_RUN_ONCE { PVOID Ptr; } 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