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
ca097348
Commit
ca097348
authored
Jun 25, 2015
by
Michael Müller
Committed by
Alexandre Julliard
Jun 25, 2015
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fltlib: Add stub for FilterLoad.
parent
c908c9c7
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
13 additions
and
4 deletions
+13
-4
fltlib.c
dlls/fltlib/fltlib.c
+12
-3
fltlib.spec
dlls/fltlib/fltlib.spec
+1
-1
No files found.
dlls/fltlib/fltlib.c
View file @
ca097348
...
@@ -79,13 +79,22 @@ HRESULT WINAPI FilterFindClose(HANDLE handle)
...
@@ -79,13 +79,22 @@ HRESULT WINAPI FilterFindClose(HANDLE handle)
}
}
/**********************************************************************
/**********************************************************************
* FilterLoad (FLTLIB.@)
*/
HRESULT
WINAPI
FilterLoad
(
LPCWSTR
filtername
)
{
FIXME
(
"(%s) stub
\n
"
,
debugstr_w
(
filtername
));
return
HRESULT_FROM_WIN32
(
ERROR_NOT_SUPPORTED
);
}
/**********************************************************************
* FilterUnload (FLTLIB.@)
* FilterUnload (FLTLIB.@)
*/
*/
HRESULT
WINAPI
FilterUnload
(
LPCWSTR
lpFilterN
ame
)
HRESULT
WINAPI
FilterUnload
(
LPCWSTR
filtern
ame
)
{
{
FIXME
(
"(%s) stub
\n
"
,
debugstr_w
(
lpFilterN
ame
));
FIXME
(
"(%s) stub
\n
"
,
debugstr_w
(
filtern
ame
));
if
(
!
lpFilterN
ame
)
if
(
!
filtern
ame
)
return
HRESULT_FROM_WIN32
(
ERROR_INVALID_PARAMETER
);
return
HRESULT_FROM_WIN32
(
ERROR_INVALID_PARAMETER
);
return
S_OK
;
return
S_OK
;
...
...
dlls/fltlib/fltlib.spec
View file @
ca097348
...
@@ -16,7 +16,7 @@
...
@@ -16,7 +16,7 @@
@ stub FilterInstanceFindFirst
@ stub FilterInstanceFindFirst
@ stub FilterInstanceFindNext
@ stub FilterInstanceFindNext
@ stub FilterInstanceGetInformation
@ stub FilterInstanceGetInformation
@ st
ub FilterLoad
@ st
dcall FilterLoad(wstr)
@ stub FilterReplyMessage
@ stub FilterReplyMessage
@ stub FilterSendMessage
@ stub FilterSendMessage
@ stdcall FilterUnload(wstr)
@ stdcall FilterUnload(wstr)
...
...
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