mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-08-26 19:33:31 +00:00
[REACTOS] Add missing type declarations for ITcpipProperties_Unknown1
This commit is contained in:
@@ -1,6 +1,14 @@
|
||||
#ifndef __NETCFGN_UNDOC_H__
|
||||
#define __NETCFGN_UNDOC_H__
|
||||
|
||||
typedef struct _TCPIP_PROPERTIES
|
||||
{
|
||||
DWORD dwDhcp;
|
||||
PWSTR pszIpAddress;
|
||||
PWSTR pszSubnetMask;
|
||||
PWSTR pszParameters;
|
||||
} TCPIP_PROPERTIES, *PTCPIP_PROPERTIES;
|
||||
|
||||
#undef INTERFACE
|
||||
#define INTERFACE ITcpipProperties
|
||||
DECLARE_INTERFACE_(ITcpipProperties, IUnknown)
|
||||
@@ -8,7 +16,7 @@ DECLARE_INTERFACE_(ITcpipProperties, IUnknown)
|
||||
STDMETHOD_(HRESULT,QueryInterface)(THIS_ REFIID riid, void **ppv) PURE;
|
||||
STDMETHOD_(ULONG,AddRef)(THIS) PURE;
|
||||
STDMETHOD_(ULONG,Release) (THIS) PURE;
|
||||
STDMETHOD_(HRESULT,Unknown1)(THIS_ DWORD dwParam1, DWORD dwParam2) PURE;
|
||||
STDMETHOD_(HRESULT,Unknown1)(THIS_ GUID *pAdapterName, PTCPIP_PROPERTIES *ppProperties) PURE;
|
||||
/* ??? */
|
||||
};
|
||||
#undef INTERFACE
|
||||
|
||||
Reference in New Issue
Block a user