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
14e061a5
Commit
14e061a5
authored
May 14, 2010
by
Hans Leidekker
Committed by
Alexandre Julliard
May 14, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fltlib: Add stub implementations of FilterFindFirst and FilterFindClose.
parent
ccbf4c1b
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
21 additions
and
2 deletions
+21
-2
fltlib.c
dlls/fltlib/fltlib.c
+19
-0
fltlib.spec
dlls/fltlib/fltlib.spec
+2
-2
No files found.
dlls/fltlib/fltlib.c
View file @
14e061a5
...
@@ -58,3 +58,22 @@ HRESULT WINAPI FilterConnectCommunicationPort(LPCWSTR lpPortName, DWORD dwOption
...
@@ -58,3 +58,22 @@ HRESULT WINAPI FilterConnectCommunicationPort(LPCWSTR lpPortName, DWORD dwOption
*
hPort
=
INVALID_HANDLE_VALUE
;
*
hPort
=
INVALID_HANDLE_VALUE
;
return
E_NOTIMPL
;
return
E_NOTIMPL
;
}
}
/**********************************************************************
* FilterFindFirst (FLTLIB.@)
*/
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
);
return
HRESULT_FROM_WIN32
(
ERROR_NO_MORE_ITEMS
);
}
/**********************************************************************
* FilterFindClose (FLTLIB.@)
*/
HRESULT
WINAPI
FilterFindClose
(
HANDLE
handle
)
{
FIXME
(
"%p
\n
"
,
handle
);
return
S_OK
;
}
dlls/fltlib/fltlib.spec
View file @
14e061a5
...
@@ -4,8 +4,8 @@
...
@@ -4,8 +4,8 @@
@ stdcall FilterConnectCommunicationPort(wstr long ptr long ptr ptr)
@ stdcall FilterConnectCommunicationPort(wstr long ptr long ptr ptr)
@ stub FilterCreate
@ stub FilterCreate
@ stub FilterDetach
@ stub FilterDetach
@ st
ub FilterFindClose
@ st
dcall FilterFindClose(ptr)
@ st
ub FilterFindFirst
@ st
dcall FilterFindFirst(long ptr long ptr ptr)
@ stub FilterFindNext
@ stub FilterFindNext
@ stub FilterGetDosName
@ stub FilterGetDosName
@ stub FilterGetInformation
@ stub FilterGetInformation
...
...
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