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
1e451445
Commit
1e451445
authored
Mar 05, 2018
by
Alistair Leslie-Hughes
Committed by
Alexandre Julliard
Mar 05, 2018
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
kernel32: Add ExecuteUmsThread stub.
Signed-off-by:
Alistair Leslie-Hughes
<
leslie_alistair@hotmail.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
d371c451
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
12 additions
and
1 deletion
+12
-1
kernel32.spec
dlls/kernel32/kernel32.spec
+1
-1
process.c
dlls/kernel32/process.c
+10
-0
winbase.h
include/winbase.h
+1
-0
No files found.
dlls/kernel32/kernel32.spec
View file @
1e451445
...
@@ -437,7 +437,7 @@
...
@@ -437,7 +437,7 @@
@ stdcall -arch=x86_64 EnterUmsSchedulingMode(ptr)
@ stdcall -arch=x86_64 EnterUmsSchedulingMode(ptr)
@ stdcall EraseTape(ptr long long)
@ stdcall EraseTape(ptr long long)
@ stdcall EscapeCommFunction(long long)
@ stdcall EscapeCommFunction(long long)
# @ stub -arch=x86_64 ExecuteUmsThread
@ stdcall -arch=x86_64 ExecuteUmsThread(ptr)
@ stdcall ExitProcess(long)
@ stdcall ExitProcess(long)
@ stdcall ExitThread(long)
@ stdcall ExitThread(long)
@ stub ExitVDM
@ stub ExitVDM
...
...
dlls/kernel32/process.c
View file @
1e451445
...
@@ -4292,6 +4292,16 @@ BOOL WINAPI EnterUmsSchedulingMode(UMS_SCHEDULER_STARTUP_INFO *info)
...
@@ -4292,6 +4292,16 @@ BOOL WINAPI EnterUmsSchedulingMode(UMS_SCHEDULER_STARTUP_INFO *info)
return
FALSE
;
return
FALSE
;
}
}
/***********************************************************************
* ExecuteUmsThread (KERNEL32.@)
*/
BOOL
WINAPI
ExecuteUmsThread
(
PUMS_CONTEXT
ctx
)
{
FIXME
(
"%p: stub
\n
"
,
ctx
);
SetLastError
(
ERROR_CALL_NOT_IMPLEMENTED
);
return
FALSE
;
}
/**********************************************************************
/**********************************************************************
* BaseFlushAppcompatCache (KERNEL32.@)
* BaseFlushAppcompatCache (KERNEL32.@)
*/
*/
...
...
include/winbase.h
View file @
1e451445
...
@@ -1957,6 +1957,7 @@ WINADVAPI BOOL WINAPI EqualPrefixSid(PSID,PSID);
...
@@ -1957,6 +1957,7 @@ WINADVAPI BOOL WINAPI EqualPrefixSid(PSID,PSID);
WINBASEAPI
DWORD
WINAPI
EraseTape
(
HANDLE
,
DWORD
,
BOOL
);
WINBASEAPI
DWORD
WINAPI
EraseTape
(
HANDLE
,
DWORD
,
BOOL
);
WINBASEAPI
VOID
DECLSPEC_NORETURN
WINAPI
ExitProcess
(
DWORD
);
WINBASEAPI
VOID
DECLSPEC_NORETURN
WINAPI
ExitProcess
(
DWORD
);
WINBASEAPI
VOID
DECLSPEC_NORETURN
WINAPI
ExitThread
(
DWORD
);
WINBASEAPI
VOID
DECLSPEC_NORETURN
WINAPI
ExitThread
(
DWORD
);
WINBASEAPI
BOOL
WINAPI
ExecuteUmsThread
(
PUMS_CONTEXT
);
WINBASEAPI
DWORD
WINAPI
ExpandEnvironmentStringsA
(
LPCSTR
,
LPSTR
,
DWORD
);
WINBASEAPI
DWORD
WINAPI
ExpandEnvironmentStringsA
(
LPCSTR
,
LPSTR
,
DWORD
);
WINBASEAPI
DWORD
WINAPI
ExpandEnvironmentStringsW
(
LPCWSTR
,
LPWSTR
,
DWORD
);
WINBASEAPI
DWORD
WINAPI
ExpandEnvironmentStringsW
(
LPCWSTR
,
LPWSTR
,
DWORD
);
#define ExpandEnvironmentStrings WINELIB_NAME_AW(ExpandEnvironmentStrings)
#define ExpandEnvironmentStrings WINELIB_NAME_AW(ExpandEnvironmentStrings)
...
...
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