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
ad8f4509
Commit
ad8f4509
authored
Aug 27, 2018
by
Louis Lenders
Committed by
Alexandre Julliard
Aug 29, 2018
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
kernel32: Add stub for GetApplicationRestartSettings.
Signed-off-by:
Louis Lenders
<
xerox.xerox2000x@gmail.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
6b3f6657
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
13 additions
and
4 deletions
+13
-4
api-ms-win-core-windowserrorreporting-l1-1-0.spec
...-l1-1-0/api-ms-win-core-windowserrorreporting-l1-1-0.spec
+1
-1
kernel32.spec
dlls/kernel32/kernel32.spec
+1
-1
process.c
dlls/kernel32/process.c
+9
-1
kernelbase.spec
dlls/kernelbase/kernelbase.spec
+1
-1
winbase.h
include/winbase.h
+1
-0
No files found.
dlls/api-ms-win-core-windowserrorreporting-l1-1-0/api-ms-win-core-windowserrorreporting-l1-1-0.spec
View file @
ad8f4509
@ stub GetApplicationRecoveryCallback
@ st
ub
GetApplicationRestartSettings
@ st
dcall GetApplicationRestartSettings(long ptr ptr ptr) kernel32.
GetApplicationRestartSettings
@ stdcall WerRegisterFile(wstr long long) kernel32.WerRegisterFile
@ stdcall WerRegisterMemoryBlock(ptr long) kernel32.WerRegisterMemoryBlock
@ stdcall WerRegisterRuntimeExceptionModule(wstr ptr) kernel32.WerRegisterRuntimeExceptionModule
...
...
dlls/kernel32/kernel32.spec
View file @
ad8f4509
...
...
@@ -543,7 +543,7 @@
@ stdcall GetActiveProcessorCount(long)
@ stdcall GetActiveProcessorGroupCount()
# @ stub GetApplicationRecoveryCallback
# @ stub GetApplicationRestartSettings
@ stdcall GetApplicationRestartSettings(long ptr ptr ptr)
@ stdcall GetAtomNameA(long ptr long)
@ stdcall GetAtomNameW(long ptr long)
@ stdcall GetBinaryType(str ptr) GetBinaryTypeA
...
...
dlls/kernel32/process.c
View file @
ad8f4509
...
...
@@ -3937,7 +3937,6 @@ BOOL WINAPI CmdBatNotification( BOOL bBatchRunning )
return
FALSE
;
}
/***********************************************************************
* RegisterApplicationRestart (KERNEL32.@)
*/
...
...
@@ -4007,6 +4006,15 @@ HRESULT WINAPI RegisterApplicationRecoveryCallback(APPLICATION_RECOVERY_CALLBACK
return
E_FAIL
;
}
/***********************************************************************
* GetApplicationRestartSettings (KERNEL32.@)
*/
HRESULT
WINAPI
GetApplicationRestartSettings
(
HANDLE
process
,
WCHAR
*
cmdline
,
DWORD
*
size
,
DWORD
*
flags
)
{
FIXME
(
"%p, %p, %p, %p)
\n
"
,
process
,
cmdline
,
size
,
flags
);
return
E_NOTIMPL
;
}
/**********************************************************************
* GetNumaHighestNodeNumber (KERNEL32.@)
*/
...
...
dlls/kernelbase/kernelbase.spec
View file @
ad8f4509
...
...
@@ -414,7 +414,7 @@
# @ stub GetAppDataFolder
# @ stub GetAppModelVersion
# @ stub GetApplicationRecoveryCallback
# @ stub
GetApplicationRestartSettings
@ stdcall GetApplicationRestartSettings(long ptr ptr ptr) kernel32.
GetApplicationRestartSettings
# @ stub GetApplicationUserModelId
# @ stub GetApplicationUserModelIdFromToken
# @ stub GetAppliedGPOListInternalA
...
...
include/winbase.h
View file @
ad8f4509
...
...
@@ -2038,6 +2038,7 @@ WINBASEAPI BOOL WINAPI FreeResource(HGLOBAL);
WINADVAPI
PVOID
WINAPI
FreeSid
(
PSID
);
WINADVAPI
BOOL
WINAPI
GetAce
(
PACL
,
DWORD
,
LPVOID
*
);
WINADVAPI
BOOL
WINAPI
GetAclInformation
(
PACL
,
LPVOID
,
DWORD
,
ACL_INFORMATION_CLASS
);
WINBASEAPI
HRESULT
WINAPI
GetApplicationRestartSettings
(
HANDLE
,
WCHAR
*
,
DWORD
*
,
DWORD
*
);
WINBASEAPI
UINT
WINAPI
GetAtomNameA
(
ATOM
,
LPSTR
,
INT
);
WINBASEAPI
UINT
WINAPI
GetAtomNameW
(
ATOM
,
LPWSTR
,
INT
);
#define GetAtomName WINELIB_NAME_AW(GetAtomName)
...
...
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