forked from len0rd/rockbox
Initial commit of zxbox - a ZX Spectrum emulator ported by Anton Romanov. It theoretically runs on all targets, but I have not included it in the Archos builds because it is just too slow to be usable.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@10950 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
1350d57751
commit
05a7f14f8d
88 changed files with 19624 additions and 0 deletions
15
apps/plugins/zxbox/helpers.h
Normal file
15
apps/plugins/zxbox/helpers.h
Normal file
|
@ -0,0 +1,15 @@
|
|||
#ifndef HELPERS_H
|
||||
#define HELPERS_H
|
||||
|
||||
extern int my_getc(int);
|
||||
extern int my_putc(char,int);
|
||||
extern off_t my_ftell(int);
|
||||
extern void *my_malloc(size_t size);
|
||||
|
||||
|
||||
#define getc my_getc
|
||||
#define malloc my_malloc
|
||||
#define ftell my_ftell
|
||||
#define putc my_putc
|
||||
|
||||
#endif /* HELPERS_H */
|
Loading…
Add table
Add a link
Reference in a new issue