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
091f0fed
Commit
091f0fed
authored
Feb 04, 2010
by
Peter Rosin
Committed by
Alexandre Julliard
Feb 05, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ntdll: Document RtlSetThreadErrorMode and RtlGetThreadErrorMode.
parent
691e15b4
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
18 additions
and
0 deletions
+18
-0
rtl.c
dlls/ntdll/rtl.c
+18
-0
No files found.
dlls/ntdll/rtl.c
View file @
091f0fed
...
...
@@ -1168,6 +1168,16 @@ NTSTATUS WINAPI RtlDecompressBuffer(USHORT CompressionFormat, PUCHAR Uncompresse
/***********************************************************************
* RtlSetThreadErrorMode [NTDLL.@]
*
* Set the thread local error mode.
*
* PARAMS
* mode [I] The new error mode
* oldmode [O] Destination of the old error mode (may be NULL)
*
* RETURNS
* Success: STATUS_SUCCESS
* Failure: STATUS_INVALID_PARAMETER_1
*/
NTSTATUS
WINAPI
RtlSetThreadErrorMode
(
DWORD
mode
,
LPDWORD
oldmode
)
{
...
...
@@ -1183,6 +1193,14 @@ NTSTATUS WINAPI RtlSetThreadErrorMode( DWORD mode, LPDWORD oldmode )
/***********************************************************************
* RtlGetThreadErrorMode [NTDLL.@]
*
* Get the thread local error mode.
*
* PARAMS
* None.
*
* RETURNS
* The current thread local error mode.
*/
DWORD
WINAPI
RtlGetThreadErrorMode
(
void
)
{
...
...
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