This commit is contained in:
twinaphex 2019-08-22 23:31:33 +02:00
parent 94308efcd8
commit 40ad1319c4
3 changed files with 7 additions and 15 deletions

View File

@ -2667,14 +2667,6 @@ error:
/* TRANSLATION */
#ifdef HAVE_TRANSLATE
typedef struct nbio_buf
{
void *buf;
unsigned bufsize;
char *path;
} nbio_buf_t;
static void handle_translation_cb(
retro_task_t *task, void *task_data, void *user_data, const char *error)
{

View File

@ -35,13 +35,6 @@
#include "task_file_transfer.h"
#include "tasks_internal.h"
typedef struct nbio_buf
{
void *buf;
unsigned bufsize;
char *path;
} nbio_buf_t;
struct audio_mixer_userdata
{
enum audio_mixer_stream_type stream_type;

View File

@ -35,6 +35,13 @@
RETRO_BEGIN_DECLS
typedef struct nbio_buf
{
void *buf;
unsigned bufsize;
char *path;
} nbio_buf_t;
#ifdef HAVE_NETWORKING
typedef struct
{