Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
a3337935
Commit
a3337935
authored
Jul 30, 2009
by
Hans Leidekker
Committed by
Alexandre Julliard
Aug 03, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
hnetcfg: Add a stub implementation of INetFwMgr.
parent
c18cd1b4
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
261 additions
and
1 deletion
+261
-1
Makefile.in
dlls/hnetcfg/Makefile.in
+2
-1
hnetcfg_private.h
dlls/hnetcfg/hnetcfg_private.h
+19
-0
manager.c
dlls/hnetcfg/manager.c
+240
-0
No files found.
dlls/hnetcfg/Makefile.in
View file @
a3337935
...
...
@@ -6,7 +6,8 @@ MODULE = hnetcfg.dll
IMPORTS
=
kernel32
C_SRCS
=
\
hnetcfg.c
hnetcfg.c
\
manager.c
@MAKE_DLL_RULES@
...
...
dlls/hnetcfg/hnetcfg_private.h
0 → 100644
View file @
a3337935
/*
* Copyright 2009 Hans Leidekker for CodeWeavers
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
HRESULT
NetFwMgr_create
(
IUnknown
*
,
LPVOID
*
);
dlls/hnetcfg/manager.c
0 → 100644
View file @
a3337935
/*
* Copyright 2009 Hans Leidekker for CodeWeavers
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#include "config.h"
#include <stdarg.h>
#include <stdio.h>
#define COBJMACROS
#include "windef.h"
#include "winbase.h"
#include "winuser.h"
#include "initguid.h"
#include "ole2.h"
#include "netfw.h"
#include "wine/debug.h"
#include "wine/unicode.h"
#include "hnetcfg_private.h"
WINE_DEFAULT_DEBUG_CHANNEL
(
hnetcfg
);
typedef
struct
fw_manager
{
const
INetFwMgrVtbl
*
vtbl
;
LONG
refs
;
}
fw_manager
;
static
inline
fw_manager
*
impl_from_INetFwMgr
(
INetFwMgr
*
iface
)
{
return
(
fw_manager
*
)((
char
*
)
iface
-
FIELD_OFFSET
(
fw_manager
,
vtbl
));
}
static
ULONG
WINAPI
fw_manager_AddRef
(
INetFwMgr
*
iface
)
{
fw_manager
*
fw_manager
=
impl_from_INetFwMgr
(
iface
);
return
InterlockedIncrement
(
&
fw_manager
->
refs
);
}
static
ULONG
WINAPI
fw_manager_Release
(
INetFwMgr
*
iface
)
{
fw_manager
*
fw_manager
=
impl_from_INetFwMgr
(
iface
);
LONG
refs
=
InterlockedDecrement
(
&
fw_manager
->
refs
);
if
(
!
refs
)
{
TRACE
(
"destroying %p
\n
"
,
fw_manager
);
HeapFree
(
GetProcessHeap
(),
0
,
fw_manager
);
}
return
refs
;
}
static
HRESULT
WINAPI
fw_manager_QueryInterface
(
INetFwMgr
*
iface
,
REFIID
riid
,
void
**
ppvObject
)
{
fw_manager
*
This
=
impl_from_INetFwMgr
(
iface
);
TRACE
(
"%p %s %p
\n
"
,
This
,
debugstr_guid
(
riid
),
ppvObject
);
if
(
IsEqualGUID
(
riid
,
&
IID_INetFwMgr
)
||
IsEqualGUID
(
riid
,
&
IID_IDispatch
)
||
IsEqualGUID
(
riid
,
&
IID_IUnknown
)
)
{
*
ppvObject
=
iface
;
}
else
{
FIXME
(
"interface %s not implemented
\n
"
,
debugstr_guid
(
riid
));
return
E_NOINTERFACE
;
}
INetFwMgr_AddRef
(
iface
);
return
S_OK
;
}
static
HRESULT
WINAPI
fw_manager_GetTypeInfoCount
(
INetFwMgr
*
iface
,
UINT
*
pctinfo
)
{
fw_manager
*
This
=
impl_from_INetFwMgr
(
iface
);
FIXME
(
"%p %p
\n
"
,
This
,
pctinfo
);
return
E_NOTIMPL
;
}
static
HRESULT
WINAPI
fw_manager_GetTypeInfo
(
INetFwMgr
*
iface
,
UINT
iTInfo
,
LCID
lcid
,
ITypeInfo
**
ppTInfo
)
{
fw_manager
*
This
=
impl_from_INetFwMgr
(
iface
);
FIXME
(
"%p %u %u %p
\n
"
,
This
,
iTInfo
,
lcid
,
ppTInfo
);
return
E_NOTIMPL
;
}
static
HRESULT
WINAPI
fw_manager_GetIDsOfNames
(
INetFwMgr
*
iface
,
REFIID
riid
,
LPOLESTR
*
rgszNames
,
UINT
cNames
,
LCID
lcid
,
DISPID
*
rgDispId
)
{
fw_manager
*
This
=
impl_from_INetFwMgr
(
iface
);
FIXME
(
"%p %s %p %u %u %p
\n
"
,
This
,
debugstr_guid
(
riid
),
rgszNames
,
cNames
,
lcid
,
rgDispId
);
return
E_NOTIMPL
;
}
static
HRESULT
WINAPI
fw_manager_Invoke
(
INetFwMgr
*
iface
,
DISPID
dispIdMember
,
REFIID
riid
,
LCID
lcid
,
WORD
wFlags
,
DISPPARAMS
*
pDispParams
,
VARIANT
*
pVarResult
,
EXCEPINFO
*
pExcepInfo
,
UINT
*
puArgErr
)
{
fw_manager
*
This
=
impl_from_INetFwMgr
(
iface
);
FIXME
(
"%p %d %s %d %d %p %p %p %p
\n
"
,
This
,
dispIdMember
,
debugstr_guid
(
riid
),
lcid
,
wFlags
,
pDispParams
,
pVarResult
,
pExcepInfo
,
puArgErr
);
return
E_NOTIMPL
;
}
static
HRESULT
WINAPI
fw_manager_get_LocalPolicy
(
INetFwMgr
*
iface
,
INetFwPolicy
**
localPolicy
)
{
fw_manager
*
This
=
impl_from_INetFwMgr
(
iface
);
FIXME
(
"%p, %p
\n
"
,
This
,
localPolicy
);
return
E_NOTIMPL
;
}
static
HRESULT
WINAPI
fw_manager_get_CurrentProfileType
(
INetFwMgr
*
iface
,
NET_FW_PROFILE_TYPE
*
profileType
)
{
fw_manager
*
This
=
impl_from_INetFwMgr
(
iface
);
FIXME
(
"%p, %p
\n
"
,
This
,
profileType
);
return
E_NOTIMPL
;
}
static
HRESULT
WINAPI
fw_manager_RestoreDefaults
(
INetFwMgr
*
iface
)
{
fw_manager
*
This
=
impl_from_INetFwMgr
(
iface
);
FIXME
(
"%p
\n
"
,
This
);
return
E_NOTIMPL
;
}
static
HRESULT
WINAPI
fw_manager_IsPortAllowed
(
INetFwMgr
*
iface
,
BSTR
imageFileName
,
NET_FW_IP_VERSION
ipVersion
,
LONG
portNumber
,
BSTR
localAddress
,
NET_FW_IP_PROTOCOL
ipProtocol
,
VARIANT
*
allowed
,
VARIANT
*
restricted
)
{
fw_manager
*
This
=
impl_from_INetFwMgr
(
iface
);
FIXME
(
"%p, %s, %u, %d, %s, %u, %p, %p
\n
"
,
This
,
debugstr_w
(
imageFileName
),
ipVersion
,
portNumber
,
debugstr_w
(
localAddress
),
ipProtocol
,
allowed
,
restricted
);
return
E_NOTIMPL
;
}
static
HRESULT
WINAPI
fw_manager_IsIcmpTypeAllowed
(
INetFwMgr
*
iface
,
NET_FW_IP_VERSION
ipVersion
,
BSTR
localAddress
,
BYTE
type
,
VARIANT
*
allowed
,
VARIANT
*
restricted
)
{
fw_manager
*
This
=
impl_from_INetFwMgr
(
iface
);
FIXME
(
"%p, %u, %s, %u, %p, %p
\n
"
,
This
,
ipVersion
,
debugstr_w
(
localAddress
),
type
,
allowed
,
restricted
);
return
E_NOTIMPL
;
}
static
const
struct
INetFwMgrVtbl
fw_manager_vtbl
=
{
fw_manager_QueryInterface
,
fw_manager_AddRef
,
fw_manager_Release
,
fw_manager_GetTypeInfoCount
,
fw_manager_GetTypeInfo
,
fw_manager_GetIDsOfNames
,
fw_manager_Invoke
,
fw_manager_get_LocalPolicy
,
fw_manager_get_CurrentProfileType
,
fw_manager_RestoreDefaults
,
fw_manager_IsPortAllowed
,
fw_manager_IsIcmpTypeAllowed
};
HRESULT
NetFwMgr_create
(
IUnknown
*
pUnkOuter
,
LPVOID
*
ppObj
)
{
fw_manager
*
fm
;
TRACE
(
"(%p,%p)
\n
"
,
pUnkOuter
,
ppObj
);
fm
=
HeapAlloc
(
GetProcessHeap
(),
0
,
sizeof
(
*
fm
)
);
if
(
!
fm
)
return
E_OUTOFMEMORY
;
fm
->
vtbl
=
&
fw_manager_vtbl
;
fm
->
refs
=
1
;
*
ppObj
=
&
fm
->
vtbl
;
TRACE
(
"returning iface %p
\n
"
,
*
ppObj
);
return
S_OK
;
}
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