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
9d36b416
Commit
9d36b416
authored
Jan 30, 2008
by
Alistair Leslie-Hughes
Committed by
Alexandre Julliard
Feb 05, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
kernel32: Add RegisterApplicationRestart stub.
parent
701ef1d8
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
12 additions
and
0 deletions
+12
-0
kernel32.spec
dlls/kernel32/kernel32.spec
+1
-0
process.c
dlls/kernel32/process.c
+11
-0
No files found.
dlls/kernel32/kernel32.spec
View file @
9d36b416
...
...
@@ -878,6 +878,7 @@
@ stdcall ReadFileEx(long ptr long ptr ptr)
@ stub ReadFileScatter
@ stdcall ReadProcessMemory(long ptr ptr long ptr)
@ stdcall RegisterApplicationRestart(wstr long)
@ stub RegisterConsoleIME
@ stub RegisterConsoleOS2
@ stub RegisterConsoleVDM
...
...
dlls/kernel32/process.c
View file @
9d36b416
...
...
@@ -2968,3 +2968,14 @@ BOOL WINAPI CmdBatNotification( BOOL bBatchRunning )
FIXME
(
"%d
\n
"
,
bBatchRunning
);
return
FALSE
;
}
/***********************************************************************
* RegisterApplicationRestart (KERNEL32.@)
*/
HRESULT
WINAPI
RegisterApplicationRestart
(
PCWSTR
pwzCommandLine
,
DWORD
dwFlags
)
{
FIXME
(
"(%s,%d)
\n
"
,
debugstr_w
(
pwzCommandLine
),
dwFlags
);
return
S_OK
;
}
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