This commit is contained in:
twinaphex 2017-05-13 22:28:19 +02:00
parent 8ae708576f
commit bd7970b9b7
2 changed files with 8 additions and 4 deletions

View File

@ -58,7 +58,9 @@
#include "tasks_internal.h"
typedef struct
typedef struct screenshot_task_state screenshot_task_state_t;
struct screenshot_task_state
{
#ifdef _XBOX1
D3DSurface *surf;
@ -78,7 +80,7 @@ typedef struct
bool is_paused;
bool history_list_enable;
unsigned pixel_format_type;
} screenshot_task_state_t;
};
/**
* task_screenshot_handler:

View File

@ -30,10 +30,12 @@
#include "../menu/menu_entries.h"
#include "../menu/menu_driver.h"
typedef struct
typedef struct wifi_handle wifi_handle_t;
struct wifi_handle
{
struct string_list *ssid_list;
} wifi_handle_t;
};
static void wifi_scan_callback(void *task_data,
void *user_data, const char *error)