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
c18ebdfe
Commit
c18ebdfe
authored
Oct 27, 2019
by
Roman Pišl
Committed by
Alexandre Julliard
Oct 28, 2019
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
rstrtmgr: Add stubs RmAddFilter and RmRemoveFilter.
Signed-off-by:
Roman Pišl
<
rpisl@seznam.cz
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
91570a55
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
24 additions
and
2 deletions
+24
-2
main.c
dlls/rstrtmgr/main.c
+22
-0
rstrtmgr.spec
dlls/rstrtmgr/rstrtmgr.spec
+2
-2
No files found.
dlls/rstrtmgr/main.c
View file @
c18ebdfe
...
...
@@ -114,3 +114,25 @@ DWORD WINAPI RmShutdown(DWORD handle, ULONG flags, RM_WRITE_STATUS_CALLBACK stat
FIXME
(
"%u, 0x%08x, %p stub!
\n
"
,
handle
,
flags
,
status
);
return
ERROR_SUCCESS
;
}
/***********************************************************************
* RmAddFilter (rstrtmgr.@)
*/
DWORD
WINAPI
RmAddFilter
(
DWORD
handle
,
LPCWSTR
moduleName
,
RM_UNIQUE_PROCESS
*
process
,
LPCWSTR
serviceShortName
,
RM_FILTER_ACTION
filter
)
{
FIXME
(
"%u, %s %p %s 0x%08x stub!
\n
"
,
handle
,
debugstr_w
(
moduleName
),
process
,
debugstr_w
(
serviceShortName
),
filter
);
return
ERROR_SUCCESS
;
}
/***********************************************************************
* RmRemoveFilter (rstrtmgr.@)
*/
DWORD
WINAPI
RmRemoveFilter
(
DWORD
handle
,
LPCWSTR
moduleName
,
RM_UNIQUE_PROCESS
*
process
,
LPCWSTR
serviceShortName
)
{
FIXME
(
"%u, %s %p %s stub!
\n
"
,
handle
,
debugstr_w
(
moduleName
),
process
,
debugstr_w
(
serviceShortName
));
return
ERROR_SUCCESS
;
}
dlls/rstrtmgr/rstrtmgr.spec
View file @
c18ebdfe
@ st
ub RmAddFilter
@ st
dcall RmAddFilter(long wstr ptr wstr long)
@ stub RmCancelCurrentTask
@ stdcall RmEndSession(long)
@ stub RmGetFilterList
@ stdcall RmGetList(long ptr ptr ptr ptr)
@ stub RmJoinSession
@ stdcall RmRegisterResources(long long ptr long ptr long ptr)
@ st
ub RmRemoveFilter
@ st
dcall RmRemoveFilter(long wstr ptr wstr)
@ stub RmReserveHeap
@ stdcall RmRestart(long long ptr)
@ stdcall RmShutdown(long 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