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
e701ca90
Commit
e701ca90
authored
May 22, 2011
by
Austin English
Committed by
Alexandre Julliard
May 23, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
kernel32: Add a stub for RegisterApplicationRecoveryCallback.
parent
ac2c5039
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
13 additions
and
0 deletions
+13
-0
kernel32.spec
dlls/kernel32/kernel32.spec
+1
-0
process.c
dlls/kernel32/process.c
+10
-0
winbase.h
include/winbase.h
+2
-0
No files found.
dlls/kernel32/kernel32.spec
View file @
e701ca90
...
...
@@ -978,6 +978,7 @@
@ stdcall RegSetValueExW(long wstr long long ptr long) advapi32.RegSetValueExW
@ stdcall RegUnLoadKeyA(long str) advapi32.RegUnLoadKeyA
@ stdcall RegUnLoadKeyW(long wstr) advapi32.RegUnLoadKeyW
@ stdcall RegisterApplicationRecoveryCallback(ptr ptr long long)
@ stdcall RegisterApplicationRestart(wstr long)
@ stub RegisterConsoleIME
@ stub RegisterConsoleOS2
...
...
dlls/kernel32/process.c
View file @
e701ca90
...
...
@@ -3740,3 +3740,13 @@ HRESULT WINAPI ApplicationRecoveryInProgress(PBOOL canceled)
SetLastError
(
ERROR_CALL_NOT_IMPLEMENTED
);
return
E_FAIL
;
}
/**********************************************************************
* RegisterApplicationRecoveryCallback (KERNEL32.@)
*/
HRESULT
WINAPI
RegisterApplicationRecoveryCallback
(
APPLICATION_RECOVERY_CALLBACK
callback
,
PVOID
param
,
DWORD
pingint
,
DWORD
flags
)
{
FIXME
(
"%p, %p, %d, %d: stub
\n
"
,
callback
,
param
,
pingint
,
flags
);
SetLastError
(
ERROR_CALL_NOT_IMPLEMENTED
);
return
E_FAIL
;
}
include/winbase.h
View file @
e701ca90
...
...
@@ -838,6 +838,8 @@ typedef DWORD (CALLBACK *LPPROGRESS_ROUTINE)(LARGE_INTEGER, LARGE_INTEGER, LARGE
LARGE_INTEGER
,
DWORD
,
DWORD
,
HANDLE
,
HANDLE
,
LPVOID
);
typedef
DWORD
(
WINAPI
*
APPLICATION_RECOVERY_CALLBACK
)(
PVOID
);
#define CREATE_EVENT_MANUAL_RESET 1
#define CREATE_EVENT_INITIAL_SET 2
...
...
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