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
2013cdc6
Commit
2013cdc6
authored
Jan 12, 2009
by
Nikolay Sivov
Committed by
Alexandre Julliard
Jan 13, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
kernel32: Implemented GetErrorMode().
parent
444f4a7f
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
9 additions
and
1 deletion
+9
-1
kernel32.spec
dlls/kernel32/kernel32.spec
+1
-1
process.c
dlls/kernel32/process.c
+7
-0
winbase.h
include/winbase.h
+1
-0
No files found.
dlls/kernel32/kernel32.spec
View file @
2013cdc6
...
...
@@ -513,7 +513,7 @@
@ stdcall GetEnvironmentStringsW()
@ stdcall GetEnvironmentVariableA(str ptr long)
@ stdcall GetEnvironmentVariableW(wstr ptr long)
@ st
ub GetErrorMode
@ st
dcall GetErrorMode()
@ stdcall GetExitCodeProcess(long ptr)
@ stdcall GetExitCodeThread(long ptr)
@ stdcall GetExpandedNameA(str ptr)
...
...
dlls/kernel32/process.c
View file @
2013cdc6
...
...
@@ -2238,6 +2238,13 @@ UINT WINAPI SetErrorMode( UINT mode )
return
old
;
}
/***********************************************************************
* GetErrorMode (KERNEL32.@)
*/
UINT
WINAPI
GetErrorMode
(
void
)
{
return
process_error_mode
;
}
/**********************************************************************
* TlsAlloc [KERNEL32.@]
...
...
include/winbase.h
View file @
2013cdc6
...
...
@@ -1604,6 +1604,7 @@ WINBASEAPI LPWSTR WINAPI GetEnvironmentStringsW(void);
WINBASEAPI
DWORD
WINAPI
GetEnvironmentVariableA
(
LPCSTR
,
LPSTR
,
DWORD
);
WINBASEAPI
DWORD
WINAPI
GetEnvironmentVariableW
(
LPCWSTR
,
LPWSTR
,
DWORD
);
#define GetEnvironmentVariable WINELIB_NAME_AW(GetEnvironmentVariable)
WINBASEAPI
UINT
WINAPI
GetErrorMode
(
void
);
WINBASEAPI
BOOL
WINAPI
GetExitCodeProcess
(
HANDLE
,
LPDWORD
);
WINBASEAPI
BOOL
WINAPI
GetExitCodeThread
(
HANDLE
,
LPDWORD
);
WINBASEAPI
DWORD
WINAPI
GetFileAttributesA
(
LPCSTR
);
...
...
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