2010-10-20 10:21:15 +02:00
|
|
|
/*
|
|
|
|
* Copyright 2010 Ričardas Barkauskas
|
|
|
|
*
|
|
|
|
* 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 "windef.h"
|
|
|
|
#include "winbase.h"
|
|
|
|
#include "wine/debug.h"
|
|
|
|
|
2016-01-25 04:32:20 +01:00
|
|
|
#include "wlanapi.h"
|
|
|
|
|
2010-10-20 10:21:15 +02:00
|
|
|
WINE_DEFAULT_DEBUG_CHANNEL(wlanapi);
|
|
|
|
|
2017-01-30 07:59:43 +01:00
|
|
|
#define WLAN_MAGIC 0x574c414e /* WLAN */
|
|
|
|
|
|
|
|
static struct wine_wlan
|
|
|
|
{
|
|
|
|
DWORD magic, cli_version;
|
|
|
|
} handle_table[16];
|
|
|
|
|
2017-01-30 07:59:44 +01:00
|
|
|
static struct wine_wlan* handle_index(HANDLE handle)
|
|
|
|
{
|
|
|
|
ULONG_PTR i = (ULONG_PTR)handle - 1;
|
|
|
|
|
|
|
|
if (i < sizeof(handle_table) / sizeof(handle_table[0]) && handle_table[i].magic == WLAN_MAGIC)
|
|
|
|
return &handle_table[i];
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2017-01-30 07:59:43 +01:00
|
|
|
static HANDLE handle_new(struct wine_wlan **entry)
|
|
|
|
{
|
|
|
|
ULONG_PTR i;
|
|
|
|
|
|
|
|
for (i = 0; i < sizeof(handle_table) / sizeof(handle_table[0]); i++)
|
|
|
|
{
|
|
|
|
if (handle_table[i].magic == 0)
|
|
|
|
{
|
|
|
|
*entry = &handle_table[i];
|
|
|
|
return (HANDLE)(i + 1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2017-01-30 07:59:38 +01:00
|
|
|
DWORD WINAPI WlanEnumInterfaces(HANDLE handle, void *reserved, WLAN_INTERFACE_INFO_LIST **interface_list)
|
2016-01-25 04:32:20 +01:00
|
|
|
{
|
2017-01-30 07:59:38 +01:00
|
|
|
FIXME("(%p, %p, %p) stub\n", handle, reserved, interface_list);
|
2016-01-25 04:32:20 +01:00
|
|
|
return ERROR_CALL_NOT_IMPLEMENTED;
|
|
|
|
}
|
|
|
|
|
2017-01-30 07:59:38 +01:00
|
|
|
DWORD WINAPI WlanCloseHandle(HANDLE handle, void *reserved)
|
2016-08-19 09:14:19 +02:00
|
|
|
{
|
2017-01-30 07:59:44 +01:00
|
|
|
struct wine_wlan *wlan;
|
|
|
|
|
|
|
|
TRACE("(%p, %p)\n", handle, reserved);
|
|
|
|
|
|
|
|
if (!handle || reserved)
|
|
|
|
return ERROR_INVALID_PARAMETER;
|
|
|
|
|
|
|
|
wlan = handle_index(handle);
|
|
|
|
if (!wlan)
|
|
|
|
return ERROR_INVALID_HANDLE;
|
|
|
|
|
|
|
|
wlan->magic = 0;
|
|
|
|
return ERROR_SUCCESS;
|
2016-08-19 09:14:19 +02:00
|
|
|
}
|
|
|
|
|
2017-01-30 07:59:38 +01:00
|
|
|
DWORD WINAPI WlanOpenHandle(DWORD client_version, void *reserved, DWORD *negotiated_version, HANDLE *handle)
|
2010-10-22 15:24:33 +02:00
|
|
|
{
|
2017-01-30 07:59:43 +01:00
|
|
|
struct wine_wlan *wlan;
|
|
|
|
HANDLE ret_handle;
|
|
|
|
|
|
|
|
TRACE("(%u, %p, %p, %p)\n", client_version, reserved, negotiated_version, handle);
|
|
|
|
|
|
|
|
if (reserved || !negotiated_version || !handle)
|
|
|
|
return ERROR_INVALID_PARAMETER;
|
|
|
|
|
|
|
|
if (client_version != 1 && client_version != 2)
|
|
|
|
return ERROR_NOT_SUPPORTED;
|
|
|
|
|
|
|
|
ret_handle = handle_new(&wlan);
|
|
|
|
if (!ret_handle)
|
|
|
|
return ERROR_REMOTE_SESSION_LIMIT_EXCEEDED;
|
|
|
|
|
|
|
|
wlan->magic = WLAN_MAGIC;
|
|
|
|
wlan->cli_version = *negotiated_version = client_version;
|
|
|
|
*handle = ret_handle;
|
|
|
|
|
|
|
|
return ERROR_SUCCESS;
|
2010-10-22 15:24:33 +02:00
|
|
|
}
|
|
|
|
|
2017-01-30 07:59:41 +01:00
|
|
|
void WINAPI WlanFreeMemory(void *ptr)
|
|
|
|
{
|
|
|
|
TRACE("(%p)\n", ptr);
|
|
|
|
|
|
|
|
HeapFree(GetProcessHeap(), 0, ptr);
|
|
|
|
}
|
|
|
|
|
|
|
|
void *WINAPI WlanAllocateMemory(DWORD size)
|
|
|
|
{
|
|
|
|
void *ret;
|
|
|
|
|
|
|
|
TRACE("(%d)", size);
|
|
|
|
|
|
|
|
if (!size)
|
|
|
|
{
|
|
|
|
SetLastError(ERROR_INVALID_PARAMETER);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
ret = HeapAlloc(GetProcessHeap(), 0, size);
|
|
|
|
if (!ret)
|
|
|
|
SetLastError(ERROR_NOT_ENOUGH_MEMORY);
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
2010-10-20 10:21:15 +02:00
|
|
|
|
2017-01-30 07:59:38 +01:00
|
|
|
BOOL WINAPI DllMain(HINSTANCE hinstDLL, DWORD reason, void *reserved)
|
2010-10-20 10:21:15 +02:00
|
|
|
{
|
2017-01-30 07:59:38 +01:00
|
|
|
TRACE("(0x%p, %u, %p)\n", hinstDLL, reason, reserved);
|
2010-10-20 10:21:15 +02:00
|
|
|
|
2017-01-30 07:59:38 +01:00
|
|
|
switch (reason)
|
2010-10-20 10:21:15 +02:00
|
|
|
{
|
|
|
|
case DLL_WINE_PREATTACH:
|
|
|
|
return FALSE; /* prefer native version */
|
|
|
|
case DLL_PROCESS_ATTACH:
|
|
|
|
DisableThreadLibraryCalls(hinstDLL);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|