|
RetroArch
|
#include <string.h>#include "wifi_driver.h"#include "../configuration.h"#include "../driver.h"#include "../retroarch.h"#include "../list_special.h"#include "../verbosity.h"Functions | |
| const void * | wifi_driver_find_handle (int idx) |
| const char * | wifi_driver_find_ident (int idx) |
| const char * | config_get_wifi_driver_options (void) |
| void | driver_wifi_stop (void) |
| bool | driver_wifi_start (void) |
| void | driver_wifi_scan () |
| void | driver_wifi_get_ssids (struct string_list *ssids) |
| bool | driver_wifi_ssid_is_online (unsigned i) |
| bool | driver_wifi_connect_ssid (unsigned i, const char *passphrase) |
| bool | wifi_driver_ctl (enum rarch_wifi_ctl_state state, void *data) |
Variables | |
| static const wifi_driver_t * | wifi_driver = NULL |
| static void * | wifi_data = NULL |
| static bool | wifi_driver_active = false |
| static bool | wifi_driver_data_own = false |
| static const wifi_driver_t * | wifi_drivers [] |
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 '|'.
| void driver_wifi_get_ssids | ( | struct string_list * | ssids | ) |
| bool driver_wifi_ssid_is_online | ( | unsigned | i | ) |
| bool wifi_driver_ctl | ( | enum rarch_wifi_ctl_state | state, |
| void * | data | ||
| ) |
wifi_driver_find_handle: : index of driver to get handle to.
Returns: handle to wifi driver at index. Can be NULL if nothing found.
| const char* wifi_driver_find_ident | ( | int | idx | ) |
wifi_driver_find_ident: : index of driver to get handle to.
Returns: Human-readable identifier of wifi driver at index. Can be NULL if nothing found.
|
static |
1.8.15