mirror of
https://github.com/libretro/RetroArch.git
synced 2025-04-02 10:51:52 -04:00
Move nbio_buf_t to task_audio_mixer.c
This commit is contained in:
parent
468b41f7bc
commit
eff75a3bcd
2 changed files with 6 additions and 6 deletions
|
@ -33,6 +33,12 @@
|
|||
|
||||
#include "tasks_internal.h"
|
||||
|
||||
typedef struct nbio_buf
|
||||
{
|
||||
void *buf;
|
||||
unsigned bufsize;
|
||||
} nbio_buf_t;
|
||||
|
||||
struct audio_mixer_handle
|
||||
{
|
||||
nbio_buf_t *buffer;
|
||||
|
|
|
@ -37,12 +37,6 @@ RETRO_BEGIN_DECLS
|
|||
|
||||
typedef int (*transfer_cb_t)(void *data, size_t len);
|
||||
|
||||
typedef struct nbio_buf
|
||||
{
|
||||
void *buf;
|
||||
unsigned bufsize;
|
||||
} nbio_buf_t;
|
||||
|
||||
enum content_mode_load
|
||||
{
|
||||
CONTENT_MODE_LOAD_NONE = 0,
|
||||
|
|
Loading…
Add table
Reference in a new issue