kernel32: Add stub for GetApplicationRestartSettings.
Signed-off-by: Louis Lenders <xerox.xerox2000x@gmail.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
6b3f665787
commit
ad8f450957
|
@ -1,5 +1,5 @@
|
|||
@ stub GetApplicationRecoveryCallback
|
||||
@ stub GetApplicationRestartSettings
|
||||
@ stdcall 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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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.@)
|
||||
*/
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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)
|
||||
|
|
Loading…
Reference in New Issue