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
c307df85
Commit
c307df85
authored
Jul 24, 2006
by
Mike McCormack
Committed by
Alexandre Julliard
Jul 24, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
query: Add a stub implementation for LocateCatalogs.
parent
6ff25905
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
22 additions
and
2 deletions
+22
-2
query.spec
dlls/query/query.spec
+2
-2
query_main.c
dlls/query/query_main.c
+20
-0
No files found.
dlls/query/query.spec
View file @
c307df85
...
...
@@ -36,8 +36,8 @@
@ stub LoadIFilter
@ stub LoadTextFilter
@ stub LocateCatalogs
@ st
ub LocateCatalogsA
@ st
ub LocateCatalogsW
@ st
dcall LocateCatalogsA(str long ptr ptr ptr ptr)
@ st
dcall LocateCatalogsW(wstr long ptr ptr ptr ptr)
@ stub SetCatalogState
@ stub SetupCache
@ stub SetupCacheEx
...
...
dlls/query/query_main.c
View file @
c307df85
...
...
@@ -76,3 +76,23 @@ HRESULT WINAPI CIState( WCHAR const *pwcsCat, WCHAR const *pwcsMachine, CI_STATE
FIXME
(
"%s %s %p
\n
"
,
debugstr_w
(
pwcsCat
),
debugstr_w
(
pwcsMachine
),
pCiState
);
return
CI_E_NOT_RUNNING
;
}
HRESULT
WINAPI
LocateCatalogsA
(
CHAR
const
*
pwszScope
,
ULONG
iBm
,
CHAR
*
pwszMachine
,
ULONG
*
pcMachine
,
CHAR
*
pwszCat
,
ULONG
*
pcCat
)
{
FIXME
(
"%s %lu %p %p %p %p
\n
"
,
debugstr_a
(
pwszScope
),
iBm
,
pwszMachine
,
pcMachine
,
pwszCat
,
pcCat
);
return
CI_E_NOT_RUNNING
;
}
HRESULT
WINAPI
LocateCatalogsW
(
WCHAR
const
*
pwszScope
,
ULONG
iBm
,
WCHAR
*
pwszMachine
,
ULONG
*
pcMachine
,
WCHAR
*
pwszCat
,
ULONG
*
pcCat
)
{
FIXME
(
"%s %lu %p %p %p %p
\n
"
,
debugstr_w
(
pwszScope
),
iBm
,
pwszMachine
,
pcMachine
,
pwszCat
,
pcCat
);
return
CI_E_NOT_RUNNING
;
}
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