mirror of
https://bitbucket.org/cosmicvoids/vide_public.git
synced 2025-07-05 07:41:11 +00:00
15 lines
266 B
C
15 lines
266 B
C
#ifndef _MemfilEdotH
|
|
#define _MemfilEdotH
|
|
|
|
#ifdef __cplusplus
|
|
extern "C"{
|
|
#endif
|
|
void memfile_init(int sz) ;
|
|
void memfile_delete(void) ;
|
|
void memfile_vfprintf(void *junk, const char *fmt, va_list args) ;
|
|
void PrintMemfile(void);
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|