2016-09-21 14:06:14 +00:00
|
|
|
/* RetroArch - A frontend for libretro.
|
|
|
|
* Copyright (C) 2010-2014 - Hans-Kristian Arntzen
|
|
|
|
* Copyright (C) 2011-2016 - Daniel De Matteis
|
|
|
|
*
|
|
|
|
* RetroArch is free software: you can redistribute it and/or modify it under the terms
|
|
|
|
* of the GNU General Public License as published by the Free Software Found-
|
|
|
|
* ation, either version 3 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* RetroArch 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 General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License along with RetroArch.
|
|
|
|
* If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __WIFI_DRIVER__H
|
|
|
|
#define __WIFI_DRIVER__H
|
|
|
|
|
|
|
|
#include <stdint.h>
|
|
|
|
|
|
|
|
#include <boolean.h>
|
|
|
|
#include <retro_common_api.h>
|
|
|
|
#include <libretro.h>
|
2016-09-21 17:46:02 +00:00
|
|
|
#include <lists/string_list.h>
|
2016-09-21 14:06:14 +00:00
|
|
|
|
|
|
|
RETRO_BEGIN_DECLS
|
|
|
|
|
|
|
|
enum rarch_wifi_ctl_state
|
|
|
|
{
|
|
|
|
RARCH_WIFI_CTL_NONE = 0,
|
|
|
|
RARCH_WIFI_CTL_DESTROY,
|
|
|
|
RARCH_WIFI_CTL_DEINIT,
|
|
|
|
RARCH_WIFI_CTL_SET_OWN_DRIVER,
|
|
|
|
RARCH_WIFI_CTL_UNSET_OWN_DRIVER,
|
|
|
|
RARCH_WIFI_CTL_OWNS_DRIVER,
|
|
|
|
RARCH_WIFI_CTL_SET_ACTIVE,
|
|
|
|
RARCH_WIFI_CTL_UNSET_ACTIVE,
|
|
|
|
RARCH_WIFI_CTL_IS_ACTIVE,
|
|
|
|
RARCH_WIFI_CTL_FIND_DRIVER,
|
|
|
|
RARCH_WIFI_CTL_SET_CB,
|
|
|
|
RARCH_WIFI_CTL_STOP,
|
|
|
|
RARCH_WIFI_CTL_START,
|
|
|
|
RARCH_WIFI_CTL_INIT
|
|
|
|
};
|
|
|
|
|
|
|
|
typedef struct wifi_driver
|
|
|
|
{
|
|
|
|
void *(*init)();
|
|
|
|
|
|
|
|
void (*free)(void *data);
|
|
|
|
|
|
|
|
bool (*start)(void *data);
|
|
|
|
void (*stop)(void *data);
|
|
|
|
|
2016-09-21 21:08:45 +00:00
|
|
|
void (*scan)(struct string_list *list);
|
2016-09-21 17:46:02 +00:00
|
|
|
|
2016-09-21 14:06:14 +00:00
|
|
|
const char *ident;
|
|
|
|
} wifi_driver_t;
|
|
|
|
|
|
|
|
extern wifi_driver_t wifi_connmanctl;
|
|
|
|
extern wifi_driver_t wifi_null;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* config_get_wifi_driver_options:
|
|
|
|
*
|
|
|
|
* Get an enumerated list of all wifi driver names,
|
|
|
|
* separated by '|'.
|
|
|
|
*
|
|
|
|
* Returns: string listing of all wifi driver names,
|
|
|
|
* separated by '|'.
|
|
|
|
**/
|
|
|
|
const char* config_get_wifi_driver_options(void);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* wifi_driver_find_handle:
|
|
|
|
* @index : index of driver to get handle to.
|
|
|
|
*
|
|
|
|
* Returns: handle to wifi driver at index. Can be NULL
|
|
|
|
* if nothing found.
|
|
|
|
**/
|
|
|
|
const void *wifi_driver_find_handle(int index);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* wifi_driver_find_ident:
|
|
|
|
* @index : index of driver to get handle to.
|
|
|
|
*
|
|
|
|
* Returns: Human-readable identifier of wifi driver at index. Can be NULL
|
|
|
|
* if nothing found.
|
|
|
|
**/
|
|
|
|
const char *wifi_driver_find_ident(int index);
|
|
|
|
|
|
|
|
void driver_wifi_stop(void);
|
|
|
|
|
|
|
|
bool driver_wifi_start(void);
|
|
|
|
|
2016-09-21 19:58:15 +00:00
|
|
|
void driver_wifi_scan(struct string_list *list);
|
|
|
|
|
2016-09-21 14:06:14 +00:00
|
|
|
bool wifi_driver_ctl(enum rarch_wifi_ctl_state state, void *data);
|
|
|
|
|
|
|
|
RETRO_END_DECLS
|
|
|
|
|
|
|
|
#endif
|