mirror of
https://github.com/reactos/reactos.git
synced 2025-01-03 21:09:19 +00:00
[QUERY]
* Sync to Wine 1.3.37. svn path=/trunk/; revision=55298
This commit is contained in:
parent
15fb0aecc1
commit
503dee91c9
5 changed files with 13 additions and 3 deletions
|
@ -1,6 +1,8 @@
|
|||
|
||||
include_directories(${REACTOS_SOURCE_DIR}/include/reactos/wine)
|
||||
add_definitions(-D__WINESRC__)
|
||||
add_definitions(
|
||||
-D__WINESRC__
|
||||
-DCOM_NO_WINDOWS_H)
|
||||
|
||||
spec2def(query.dll query.spec)
|
||||
|
||||
|
|
|
@ -4,6 +4,7 @@
|
|||
<include base="query">.</include>
|
||||
<include base="ReactOS">include/reactos/wine</include>
|
||||
<define name="__WINESRC__" />
|
||||
<define name="COM_NO_WINDOWS_H" />
|
||||
<file>query_main.c</file>
|
||||
<library>wine</library>
|
||||
<library>uuid</library>
|
||||
|
|
|
@ -33,7 +33,7 @@
|
|||
@ stub InitializeFILTERPerformanceData
|
||||
@ stub _LoadBHIFilter@16
|
||||
@ stub LoadBinaryFilter
|
||||
@ stub LoadIFilter
|
||||
@ stdcall LoadIFilter(wstr ptr ptr)
|
||||
@ stub LoadTextFilter
|
||||
@ stub LocateCatalogs
|
||||
@ stdcall LocateCatalogsA(str long ptr ptr ptr ptr)
|
||||
|
|
|
@ -98,3 +98,10 @@ HRESULT WINAPI LocateCatalogsW(WCHAR const *pwszScope, ULONG iBm,
|
|||
iBm, pwszMachine, pcMachine, pwszCat, pcCat);
|
||||
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;
|
||||
}
|
||||
|
|
|
@ -135,7 +135,7 @@ reactos/dll/win32/pidgen # Autosync
|
|||
reactos/dll/win32/powrprof # Forked at Wine-1.0rc5
|
||||
reactos/dll/win32/printui # Synced to Wine-1.3.37
|
||||
reactos/dll/win32/pstorec # Synced to Wine-1.3.37
|
||||
reactos/dll/win32/query # Autosync
|
||||
reactos/dll/win32/query # Synced to Wine-1.3.37
|
||||
reactos/dll/win32/rasapi32 # Autosync
|
||||
reactos/dll/win32/resutils # Autosync
|
||||
reactos/dll/win32/riched20 # Autosync
|
||||
|
|
Loading…
Reference in a new issue