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
163c8f31
Commit
163c8f31
authored
Sep 28, 2012
by
Hans Leidekker
Committed by
Alexandre Julliard
Sep 28, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wbemprox: Add support for WbemAdministrativeLocator.
parent
9e88e810
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
12 additions
and
3 deletions
+12
-3
builtin.c
dlls/wbemprox/builtin.c
+2
-1
main.c
dlls/wbemprox/main.c
+3
-1
services.c
dlls/wbemprox/services.c
+0
-1
wbemprox.idl
dlls/wbemprox/wbemprox.idl
+7
-0
No files found.
dlls/wbemprox/builtin.c
View file @
163c8f31
...
...
@@ -27,11 +27,12 @@
#define WIN32_NO_STATUS
#include "windef.h"
#include "winbase.h"
#include "initguid.h"
#include "wbemcli.h"
#include "wbemprov.h"
#include "winsock2.h"
#include "iphlpapi.h"
#include "tlhelp32.h"
#include "initguid.h"
#include "d3d10.h"
#include "winternl.h"
#include "winioctl.h"
...
...
dlls/wbemprox/main.c
View file @
163c8f31
...
...
@@ -27,6 +27,7 @@
#include "winbase.h"
#include "objbase.h"
#include "wbemcli.h"
#include "wbemprov.h"
#include "rpcproxy.h"
#include "wbemprox_private.h"
...
...
@@ -140,7 +141,8 @@ HRESULT WINAPI DllGetClassObject( REFCLSID rclsid, REFIID iid, LPVOID *ppv )
TRACE
(
"%s %s %p
\n
"
,
debugstr_guid
(
rclsid
),
debugstr_guid
(
iid
),
ppv
);
if
(
IsEqualGUID
(
rclsid
,
&
CLSID_WbemLocator
))
if
(
IsEqualGUID
(
rclsid
,
&
CLSID_WbemLocator
)
||
IsEqualGUID
(
rclsid
,
&
CLSID_WbemAdministrativeLocator
))
{
cf
=
&
wbem_locator_cf
.
IClassFactory_iface
;
}
...
...
dlls/wbemprox/services.c
View file @
163c8f31
...
...
@@ -23,7 +23,6 @@
#include "windef.h"
#include "winbase.h"
#include "initguid.h"
#include "objbase.h"
#include "wbemcli.h"
...
...
dlls/wbemprox/wbemprox.idl
View file @
163c8f31
...
...
@@ -24,3 +24,10 @@
uuid
(
4590
f811
-
1
d3a
-
11
d0
-
891
f
-
00
aa004b2e24
)
]
coclass
WbemLocator
{
interface
IWbemLocator
; }
[
helpstring
(
"WBEM Administrative Locator"
),
threading
(
both
),
uuid
(
cb8555cc
-
9128
-
11
d1
-
ad9b
-
00
c04fd8fdff
)
]
coclass
WbemAdministrativeLocator
{
interface
IWbemLocator
; }
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