RetroArch/tasks/task_wifi.c

59 lines
1.8 KiB
C
Raw Normal View History

2016-11-29 23:18:27 +00:00
/* RetroArch - A frontend for libretro.
2017-01-22 12:40:32 +00:00
* Copyright (C) 2016-2017 - Jean-André Santoni
2016-11-29 23:18:27 +00:00
*
* 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/>.
*/
#include <string.h>
#include <errno.h>
#include <compat/strl.h>
#include <retro_assert.h>
#include <retro_miscellaneous.h>
#include <string/stdstring.h>
#include "tasks_internal.h"
#include "../msg_hash.h"
2016-11-29 23:18:27 +00:00
#include "../verbosity.h"
#include "../wifi/wifi_driver.h"
static void task_wifi_scan_handler(retro_task_t *task)
{
driver_wifi_scan();
task_set_progress(task, 100);
task_free_title(task);
task_set_title(task, strdup(msg_hash_to_str(MSG_WIFI_SCAN_COMPLETE)));
task_set_finished(task, true);
2016-11-29 23:18:27 +00:00
}
2017-05-15 00:44:24 +00:00
bool task_push_wifi_scan(retro_task_callback_t cb)
2016-11-29 23:18:27 +00:00
{
retro_task_t *task = task_init();
2016-11-29 23:18:27 +00:00
2017-05-15 00:50:14 +00:00
if (!task)
return false;
2016-11-29 23:18:27 +00:00
/* blocking means no other task can run while this one is running,
* which is the default */
task->type = TASK_TYPE_BLOCKING;
2017-05-15 00:50:14 +00:00
task->state = NULL;
task->handler = task_wifi_scan_handler;
2017-05-15 00:44:24 +00:00
task->callback = cb;
task->title = strdup(msg_hash_to_str(
MSG_SCANNING_WIRELESS_NETWORKS));
2016-11-29 23:18:27 +00:00
2017-05-14 18:43:39 +00:00
task_queue_push(task);
2016-11-29 23:18:27 +00:00
return true;
2016-11-30 16:37:32 +00:00
}