Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
f8971d03
Commit
f8971d03
authored
May 23, 2013
by
Detlef Riekenberg
Committed by
Alexandre Julliard
May 24, 2013
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
include: Add missing InitOnce / RtlRunOnce prototypes.
parent
51f97bb3
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
0 deletions
+4
-0
winbase.h
include/winbase.h
+2
-0
winnt.h
include/winnt.h
+2
-0
No files found.
include/winbase.h
View file @
f8971d03
...
...
@@ -1951,6 +1951,8 @@ WINADVAPI BOOL WINAPI InitializeSecurityDescriptor(PSECURITY_DESCRIPTOR,
WINADVAPI
BOOL
WINAPI
InitializeSid
(
PSID
,
PSID_IDENTIFIER_AUTHORITY
,
BYTE
);
WINBASEAPI
VOID
WINAPI
InitializeSListHead
(
PSLIST_HEADER
);
WINBASEAPI
VOID
WINAPI
InitializeSRWLock
(
PSRWLOCK
);
WINBASEAPI
BOOL
WINAPI
InitOnceBeginInitialize
(
PINIT_ONCE
,
DWORD
,
PBOOL
,
PVOID
*
);
WINBASEAPI
BOOL
WINAPI
InitOnceComplete
(
PINIT_ONCE
,
DWORD
,
PVOID
);
WINBASEAPI
BOOL
WINAPI
InitOnceExecuteOnce
(
PINIT_ONCE
,
PINIT_ONCE_FN
,
PVOID
,
PVOID
*
);
WINBASEAPI
VOID
WINAPI
InitOnceInitialize
(
PINIT_ONCE
);
WINBASEAPI
PSLIST_ENTRY
WINAPI
InterlockedFlushSList
(
PSLIST_HEADER
);
...
...
include/winnt.h
View file @
f8971d03
...
...
@@ -5163,6 +5163,8 @@ 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
VOID
WINAPI
RtlRunOnceInitialize
(
PRTL_RUN_ONCE
);
NTSYSAPI
DWORD
WINAPI
RtlRunOnceExecuteOnce
(
PRTL_RUN_ONCE
,
PRTL_RUN_ONCE_INIT_FN
,
PVOID
,
PVOID
*
);
NTSYSAPI
DWORD
WINAPI
RtlRunOnceBeginInitialize
(
PRTL_RUN_ONCE
,
DWORD
,
PBOOL
,
PVOID
*
);
NTSYSAPI
DWORD
WINAPI
RtlRunOnceComplete
(
PRTL_RUN_ONCE
,
DWORD
,
PVOID
);
#include <pshpack8.h>
typedef
struct
_IO_COUNTERS
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment