mirror of
https://github.com/libretro/RetroArch
synced 2025-02-22 21:40:40 +00:00
19 lines
240 B
C
19 lines
240 B
C
#ifndef __CARD_BUF_H__
|
|
#define __CARD_BUF_H__
|
|
|
|
#include <gctypes.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
void sdgecko_initBufferPool();
|
|
u8* sdgecko_allocBuffer();
|
|
void sdgecko_freeBuffer(u8 *buf);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|