Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
6cf2df5a
Commit
6cf2df5a
authored
Nov 07, 2007
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
include: Add NTSYSAPI to the exported ntdll functions.
parent
16d85e2d
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
13 additions
and
7 deletions
+13
-7
winnt.h
include/winnt.h
+13
-7
winternl.h
include/winternl.h
+0
-0
No files found.
include/winnt.h
View file @
6cf2df5a
...
...
@@ -35,6 +35,12 @@
extern
"C"
{
#endif
#ifdef _NTSYSTEM_
#define NTSYSAPI
#else
#define NTSYSAPI DECLSPEC_IMPORT
#endif
#define NTAPI __stdcall
#if (defined(_M_IX86) || defined(_M_IA64) || defined(_M_AMD64) || defined(__MINGW32__)) && !defined(MIDL_PASS)
...
...
@@ -650,12 +656,12 @@ typedef union _SLIST_HEADER {
#endif
PSLIST_ENTRY
WINAPI
RtlFirstEntrySList
(
const
SLIST_HEADER
*
);
VOID
WINAPI
RtlInitializeSListHead
(
PSLIST_HEADER
);
PSLIST_ENTRY
WINAPI
RtlInterlockedFlushSList
(
PSLIST_HEADER
);
PSLIST_ENTRY
WINAPI
RtlInterlockedPopEntrySList
(
PSLIST_HEADER
);
PSLIST_ENTRY
WINAPI
RtlInterlockedPushEntrySList
(
PSLIST_HEADER
,
PSLIST_ENTRY
);
WORD
WINAPI
RtlQueryDepthSList
(
PSLIST_HEADER
);
NTSYSAPI
PSLIST_ENTRY
WINAPI
RtlFirstEntrySList
(
const
SLIST_HEADER
*
);
NTSYSAPI
VOID
WINAPI
RtlInitializeSListHead
(
PSLIST_HEADER
);
NTSYSAPI
PSLIST_ENTRY
WINAPI
RtlInterlockedFlushSList
(
PSLIST_HEADER
);
NTSYSAPI
PSLIST_ENTRY
WINAPI
RtlInterlockedPopEntrySList
(
PSLIST_HEADER
);
NTSYSAPI
PSLIST_ENTRY
WINAPI
RtlInterlockedPushEntrySList
(
PSLIST_HEADER
,
PSLIST_ENTRY
);
NTSYSAPI
WORD
WINAPI
RtlQueryDepthSList
(
PSLIST_HEADER
);
/* Heap flags */
...
...
@@ -4763,7 +4769,7 @@ DECL_WINELIB_TYPE_AW(OSVERSIONINFOEX)
DECL_WINELIB_TYPE_AW
(
POSVERSIONINFOEX
)
DECL_WINELIB_TYPE_AW
(
LPOSVERSIONINFOEX
)
ULONGLONG
WINAPI
VerSetConditionMask
(
ULONGLONG
,
DWORD
,
BYTE
);
NTSYSAPI
ULONGLONG
WINAPI
VerSetConditionMask
(
ULONGLONG
,
DWORD
,
BYTE
);
#define VER_SET_CONDITION(_m_,_t_,_c_) ((_m_)=VerSetConditionMask((_m_),(_t_),(_c_)))
...
...
include/winternl.h
View file @
6cf2df5a
This diff is collapsed.
Click to expand it.
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