Skip to content

Commit 4a3bf41

Browse files
committed
[NETCFGX][REACTOS] Add missing INetCfgComponentPrivate interface declaration
1 parent ca2fb5f commit 4a3bf41

File tree

2 files changed

+29
-0
lines changed

2 files changed

+29
-0
lines changed

dll/win32/netcfgx/precomp.h

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,8 @@
2424
#include <commctrl.h>
2525
#include <cfgmgr32.h>
2626

27+
#include <netcfgx_undoc.h>
28+
2729
#include <wine/debug.h>
2830

2931
#include "resource.h"
Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
#ifndef __NETCFGX_UNDOC_H__
2+
#define __NETCFGX_UNDOC_H__
3+
4+
#undef INTERFACE
5+
#define INTERFACE INetCfgComponentPrivate
6+
DECLARE_INTERFACE_(INetCfgComponentPrivate, IUnknown)
7+
{
8+
STDMETHOD_(HRESULT,QueryInterface)(THIS_ REFIID riid, void **ppv) PURE;
9+
STDMETHOD_(ULONG,AddRef)(THIS) PURE;
10+
STDMETHOD_(ULONG,Release) (THIS) PURE;
11+
STDMETHOD_(HRESULT,Unknown1)(THIS_ DWORD dwParam1, DWORD dwParam2) PURE;
12+
/* ??? */
13+
};
14+
#undef INTERFACE
15+
16+
EXTERN_C const IID IID_INetCfgComponentPrivate;
17+
18+
#if !defined(__cplusplus) || defined(CINTERFACE)
19+
/*** IUnknown methods ***/
20+
#define INetCfgComponentPrivate_QueryInterface(p,a,b) (p)->lpVtbl->QueryInterface(p,a,b)
21+
#define INetCfgComponentPrivate_AddRef(p) (p)->lpVtbl->AddRef(p)
22+
#define INetCfgComponentPrivate_Release(p) (p)->lpVtbl->Release(p)
23+
#define INetCfgComponentPrivate_Unknown1(p,a,b) (p)->lpVtbl->Unknown1(p,a,b)
24+
/* ??? */
25+
#endif
26+
27+
#endif /* __NETCFGX_UNDOC_H__ */

0 commit comments

Comments
 (0)