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
b8c5a9c5
Commit
b8c5a9c5
authored
Nov 18, 2010
by
Hans Leidekker
Committed by
Alexandre Julliard
Nov 18, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
rstrtmgr: Add stub implementations of RmEndSession and RmRestart.
parent
a4de41f3
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
20 additions
and
2 deletions
+20
-2
main.c
dlls/rstrtmgr/main.c
+18
-0
rstrtmgr.spec
dlls/rstrtmgr/rstrtmgr.spec
+2
-2
No files found.
dlls/rstrtmgr/main.c
View file @
b8c5a9c5
...
@@ -85,3 +85,21 @@ DWORD WINAPI RmStartSession(DWORD *sessionhandle, DWORD flags, WCHAR sessionkey[
...
@@ -85,3 +85,21 @@ DWORD WINAPI RmStartSession(DWORD *sessionhandle, DWORD flags, WCHAR sessionkey[
FIXME
(
"%p, %d, %p stub!
\n
"
,
sessionhandle
,
flags
,
sessionkey
);
FIXME
(
"%p, %d, %p stub!
\n
"
,
sessionhandle
,
flags
,
sessionkey
);
return
ERROR_CALL_NOT_IMPLEMENTED
;
return
ERROR_CALL_NOT_IMPLEMENTED
;
}
}
/***********************************************************************
* RmRestart (rstrtmgr.@)
*/
DWORD
WINAPI
RmRestart
(
DWORD
handle
,
DWORD
flags
,
void
*
fnstatus
)
{
FIXME
(
"%u, 0x%08x, %p stub!
\n
"
,
handle
,
flags
,
fnstatus
);
return
ERROR_CALL_NOT_IMPLEMENTED
;
}
/***********************************************************************
* RmEndSession (rstrtmgr.@)
*/
DWORD
WINAPI
RmEndSession
(
DWORD
handle
)
{
FIXME
(
"%u stub!
\n
"
,
handle
);
return
ERROR_CALL_NOT_IMPLEMENTED
;
}
dlls/rstrtmgr/rstrtmgr.spec
View file @
b8c5a9c5
@ stub RmAddFilter
@ stub RmAddFilter
@ stub RmCancelCurrentTask
@ stub RmCancelCurrentTask
@ st
ub RmEndSession
@ st
dcall RmEndSession(long)
@ stub RmGetFilterList
@ stub RmGetFilterList
@ stdcall RmGetList(long ptr ptr ptr ptr)
@ stdcall RmGetList(long ptr ptr ptr ptr)
@ stub RmJoinSession
@ stub RmJoinSession
@ stdcall RmRegisterResources(long long ptr long ptr long ptr)
@ stdcall RmRegisterResources(long long ptr long ptr long ptr)
@ stub RmRemoveFilter
@ stub RmRemoveFilter
@ stub RmReserveHeap
@ stub RmReserveHeap
@ st
ub RmRestart
@ st
dcall RmRestart(long long ptr)
@ stub RmShutdown
@ stub RmShutdown
@ stdcall RmStartSession(ptr long ptr)
@ stdcall RmStartSession(ptr long ptr)
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