2017-08-19 23:20:54 +02:00

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