Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
4c6c8ed0
Commit
4c6c8ed0
authored
Sep 02, 2012
by
Chae Jong Bin
Committed by
Alexandre Julliard
Sep 04, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fltlib: Add stub for FilterUnload.
parent
ecdd6c58
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
16 additions
and
3 deletions
+16
-3
fltlib.c
dlls/fltlib/fltlib.c
+15
-2
fltlib.spec
dlls/fltlib/fltlib.spec
+1
-1
No files found.
dlls/fltlib/fltlib.c
View file @
4c6c8ed0
...
...
@@ -65,7 +65,7 @@ HRESULT WINAPI FilterConnectCommunicationPort(LPCWSTR lpPortName, DWORD dwOption
HRESULT
WINAPI
FilterFindFirst
(
DWORD
class
,
LPVOID
buffer
,
DWORD
size
,
LPDWORD
bytes_returned
,
LPHANDLE
handle
)
{
FIXME
(
"
%u, %p, %u, %p, %p
\n
"
,
class
,
buffer
,
size
,
bytes_returned
,
handle
);
FIXME
(
"
(%u, %p, %u, %p, %p) stub
\n
"
,
class
,
buffer
,
size
,
bytes_returned
,
handle
);
return
HRESULT_FROM_WIN32
(
ERROR_NO_MORE_ITEMS
);
}
...
...
@@ -74,6 +74,19 @@ HRESULT WINAPI FilterFindFirst(DWORD class, LPVOID buffer, DWORD size, LPDWORD b
*/
HRESULT
WINAPI
FilterFindClose
(
HANDLE
handle
)
{
FIXME
(
"%p
\n
"
,
handle
);
FIXME
(
"(%p) stub
\n
"
,
handle
);
return
S_OK
;
}
/**********************************************************************
* FilterUnload (FLTLIB.@)
*/
HRESULT
WINAPI
FilterUnload
(
LPCWSTR
lpFilterName
)
{
FIXME
(
"(%s) stub
\n
"
,
debugstr_w
(
lpFilterName
));
if
(
!
lpFilterName
)
return
HRESULT_FROM_WIN32
(
ERROR_INVALID_PARAMETER
);
return
S_OK
;
}
dlls/fltlib/fltlib.spec
View file @
4c6c8ed0
...
...
@@ -19,7 +19,7 @@
@ stub FilterLoad
@ stub FilterReplyMessage
@ stub FilterSendMessage
@ st
ub FilterUnload
@ st
dcall FilterUnload(wstr)
@ stub FilterVolumeClose
@ stub FilterVolumeFindClose
@ stub FilterVolumeFindFirst
...
...
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