2009-07-30 09:13:45 +00:00
|
|
|
/*
|
|
|
|
* 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
|
|
|
|
*/
|
|
|
|
|
2012-09-26 07:37:08 +00:00
|
|
|
enum type_id
|
|
|
|
{
|
|
|
|
INetFwAuthorizedApplication_tid,
|
|
|
|
INetFwAuthorizedApplications_tid,
|
2012-09-26 07:37:23 +00:00
|
|
|
INetFwMgr_tid,
|
2014-09-17 05:59:35 +00:00
|
|
|
INetFwOpenPort_tid,
|
2015-11-10 21:43:05 +00:00
|
|
|
INetFwOpenPorts_tid,
|
2012-09-26 07:37:23 +00:00
|
|
|
INetFwPolicy_tid,
|
2016-07-22 07:47:13 +00:00
|
|
|
INetFwPolicy2_tid,
|
2012-09-26 07:37:23 +00:00
|
|
|
INetFwProfile_tid,
|
2017-09-25 22:43:37 +00:00
|
|
|
INetFwRules_tid,
|
2012-09-26 07:37:08 +00:00
|
|
|
last_tid
|
|
|
|
};
|
|
|
|
|
|
|
|
HRESULT get_typeinfo(enum type_id, ITypeInfo **) DECLSPEC_HIDDEN;
|
2015-01-14 10:39:22 +00:00
|
|
|
void release_typelib(void) DECLSPEC_HIDDEN;
|
2012-09-26 07:37:08 +00:00
|
|
|
|
2011-05-13 15:14:26 +00:00
|
|
|
HRESULT NetFwMgr_create(IUnknown *, LPVOID *) DECLSPEC_HIDDEN;
|
|
|
|
HRESULT NetFwPolicy_create(IUnknown *, LPVOID *) DECLSPEC_HIDDEN;
|
2016-07-22 07:47:13 +00:00
|
|
|
HRESULT NetFwPolicy2_create(IUnknown *, void **) DECLSPEC_HIDDEN;
|
2011-05-13 15:14:26 +00:00
|
|
|
HRESULT NetFwProfile_create(IUnknown *, LPVOID *) DECLSPEC_HIDDEN;
|
|
|
|
HRESULT NetFwAuthorizedApplication_create(IUnknown *, LPVOID *) DECLSPEC_HIDDEN;
|
|
|
|
HRESULT NetFwAuthorizedApplications_create(IUnknown *, LPVOID *) DECLSPEC_HIDDEN;
|
|
|
|
HRESULT NetFwOpenPorts_create(IUnknown *, LPVOID *) DECLSPEC_HIDDEN;
|
2014-09-17 05:11:06 +00:00
|
|
|
HRESULT NetFwOpenPort_create(IUnknown *, LPVOID *) DECLSPEC_HIDDEN;
|
2011-05-13 15:14:26 +00:00
|
|
|
HRESULT NetFwServices_create(IUnknown *, LPVOID *) DECLSPEC_HIDDEN;
|