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
ba6f99c2
Commit
ba6f99c2
authored
Aug 19, 2011
by
Alexander Morozov
Committed by
Alexandre Julliard
Sep 08, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
query: Add stub for LoadIFilter.
parent
78445357
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
10 additions
and
2 deletions
+10
-2
query.spec
dlls/query/query.spec
+1
-1
query_main.c
dlls/query/query_main.c
+7
-0
recyclebin.c
dlls/shell32/recyclebin.c
+1
-1
ntquery.h
include/ntquery.h
+1
-0
No files found.
dlls/query/query.spec
View file @
ba6f99c2
...
@@ -33,7 +33,7 @@
...
@@ -33,7 +33,7 @@
@ stub InitializeFILTERPerformanceData
@ stub InitializeFILTERPerformanceData
@ stub _LoadBHIFilter@16
@ stub _LoadBHIFilter@16
@ stub LoadBinaryFilter
@ stub LoadBinaryFilter
@ st
ub LoadIFilter
@ st
dcall LoadIFilter(wstr ptr ptr)
@ stub LoadTextFilter
@ stub LoadTextFilter
@ stub LocateCatalogs
@ stub LocateCatalogs
@ stdcall LocateCatalogsA(str long ptr ptr ptr ptr)
@ stdcall LocateCatalogsA(str long ptr ptr ptr ptr)
...
...
dlls/query/query_main.c
View file @
ba6f99c2
...
@@ -98,3 +98,10 @@ HRESULT WINAPI LocateCatalogsW(WCHAR const *pwszScope, ULONG iBm,
...
@@ -98,3 +98,10 @@ HRESULT WINAPI LocateCatalogsW(WCHAR const *pwszScope, ULONG iBm,
iBm
,
pwszMachine
,
pcMachine
,
pwszCat
,
pcCat
);
iBm
,
pwszMachine
,
pcMachine
,
pwszCat
,
pcCat
);
return
CI_E_NOT_RUNNING
;
return
CI_E_NOT_RUNNING
;
}
}
HRESULT
WINAPI
LoadIFilter
(
WCHAR
const
*
pwcsPath
,
IUnknown
*
pUnkOuter
,
void
**
ppIUnk
)
{
FIXME
(
"%s %p %p
\n
"
,
debugstr_w
(
pwcsPath
),
pUnkOuter
,
ppIUnk
);
*
ppIUnk
=
NULL
;
return
E_NOTIMPL
;
}
dlls/shell32/recyclebin.c
View file @
ba6f99c2
...
@@ -31,8 +31,8 @@
...
@@ -31,8 +31,8 @@
#include "winbase.h"
#include "winbase.h"
#include "winreg.h"
#include "winreg.h"
#include "winuser.h"
#include "winuser.h"
#include "ntquery.h"
#include "shlwapi.h"
#include "shlwapi.h"
#include "ntquery.h"
#include "shlobj.h"
#include "shlobj.h"
#include "shresdef.h"
#include "shresdef.h"
#include "shellfolder.h"
#include "shellfolder.h"
...
...
include/ntquery.h
View file @
ba6f99c2
...
@@ -74,6 +74,7 @@ STDAPI CIState(WCHAR const *, WCHAR const *, CI_STATE *);
...
@@ -74,6 +74,7 @@ STDAPI CIState(WCHAR const *, WCHAR const *, CI_STATE *);
STDAPI
LocateCatalogsA
(
CHAR
const
*
,
ULONG
,
CHAR
*
,
ULONG
*
,
CHAR
*
,
ULONG
*
);
STDAPI
LocateCatalogsA
(
CHAR
const
*
,
ULONG
,
CHAR
*
,
ULONG
*
,
CHAR
*
,
ULONG
*
);
STDAPI
LocateCatalogsW
(
WCHAR
const
*
,
ULONG
,
WCHAR
*
,
ULONG
*
,
WCHAR
*
,
ULONG
*
);
STDAPI
LocateCatalogsW
(
WCHAR
const
*
,
ULONG
,
WCHAR
*
,
ULONG
*
,
WCHAR
*
,
ULONG
*
);
#define LocateCatalogs WINELIB_NAME_AW(LocateCatalogs)
#define LocateCatalogs WINELIB_NAME_AW(LocateCatalogs)
STDAPI
LoadIFilter
(
WCHAR
const
*
,
IUnknown
*
,
void
**
);
#ifdef __cplusplus
#ifdef __cplusplus
}
}
...
...
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