xinput1_3: Move HID data into struct xinput_controller.
[wine.git] / dlls / fwpuclnt / main.c
blobbdf27ed502d0a0554a8b689a756d90a9ad6689cc
1 /*
2 * Implementation of Windows Filtering Platform (WFP) management functions
4 * Copyright 2009 Paul Chitescu
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
21 #include <stdarg.h>
23 #include "windef.h"
24 #include "winbase.h"
25 #include "wine/debug.h"
27 WINE_DEFAULT_DEBUG_CHANNEL(fwpuclnt);
29 /***********************************************************************
30 * FwpmFreeMemory0 (FWPUCLNT.@)
34 void WINAPI FwpmFreeMemory0(void** mem)
36 FIXME("(%p) stub, mem=%p\n", mem, (mem ? *mem : NULL));
39 /***********************************************************************
40 * FwpmEngineOpen0 (FWPUCLNT.@)
44 DWORD WINAPI FwpmEngineOpen0(LPCWSTR serverName, UINT32 authService, void* authIdentity, void* session, LPHANDLE engineHandle)
46 FIXME("(%s, 0x%X, %p, %p, %p) stub\n", debugstr_w(serverName), authService, authIdentity, session, engineHandle);
47 *engineHandle = NULL;
48 return RPC_S_CANNOT_SUPPORT;
51 /***********************************************************************
52 * FwpmEngineClose0 (FWPUCLNT.@)
56 DWORD WINAPI FwpmEngineClose0(HANDLE engineHandle)
58 FIXME("(%p) stub\n", engineHandle);
59 return RPC_S_CANNOT_SUPPORT;
63 /***********************************************************************
64 * FwpmSubLayerAdd0 (FWPUCLNT.@)
68 DWORD WINAPI FwpmSubLayerAdd0(HANDLE engineHandle, void* subLayer, PSECURITY_DESCRIPTOR security)
70 FIXME("(%p, %p, %p) stub\n", engineHandle, subLayer, security);
71 return RPC_S_CANNOT_SUPPORT;
74 /***********************************************************************
75 * FwpmSubLayerGetByKey0 (FWPUCLNT.@)
79 DWORD WINAPI FwpmSubLayerGetByKey0(HANDLE engineHandle, LPCGUID key, void** subLayer)
81 FIXME("(%p, %s, %p) stub\n", engineHandle, debugstr_guid(key), subLayer);
82 *subLayer = NULL;
83 return RPC_S_CANNOT_SUPPORT;
86 /***********************************************************************
87 * FwpmFilterCreateEnumHandle0 (FWPUCLNT.@)
91 DWORD WINAPI FwpmFilterCreateEnumHandle0(HANDLE engineHandle, void* enumTemplate, LPHANDLE enumHandle)
93 FIXME("(%p, %p, %p) stub\n", engineHandle, enumTemplate, enumHandle);
94 *enumHandle = NULL;
95 return RPC_S_CANNOT_SUPPORT;
98 /***********************************************************************
99 * FwpmFilterDestroyEnumHandle0 (FWPUCLNT.@)
103 DWORD WINAPI FwpmFilterDestroyEnumHandle0(HANDLE engineHandle, HANDLE enumHandle)
105 FIXME("(%p, %p) stub\n", engineHandle, enumHandle);
106 return RPC_S_CANNOT_SUPPORT;
109 /***********************************************************************
110 * FwpmFilterEnum0 (FWPUCLNT.@)
114 DWORD WINAPI FwpmFilterEnum0(HANDLE engineHandle, HANDLE enumHandle, UINT32 nEntriesRequested, void*** entries, UINT32* nEntriesReturned)
116 FIXME("(%p, %p, %u, %p, %p) stub\n", engineHandle, enumHandle, nEntriesRequested, entries, nEntriesReturned);
117 *entries = NULL;
118 *nEntriesReturned = 0;
119 return RPC_S_CANNOT_SUPPORT;
122 /***********************************************************************
123 * FwpmFilterAdd0 (FWPUCLNT.@)
127 DWORD WINAPI FwpmFilterAdd0(HANDLE engineHandle, void* filter, PSECURITY_DESCRIPTOR security, UINT64* pFilterId)
129 FIXME("(%p, %p, %p, %p) stub\n", engineHandle, filter, security, pFilterId);
130 return RPC_S_CANNOT_SUPPORT;