public
Description: A Nintendo Gameboy and Gameboy Color emulator for the Apple iPhone and iPod Touch.
Homepage: http://www.zodttd.com
Clone URL: git://github.com/zodttd/gameboy4iphone.git
Click here to lend your support to: gameboy4iphone and make a donation at www.pledgie.com !
gameboy4iphone / exports.c
100644 44 lines (32 sloc) 0.635 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
#include <stdlib.h>
 
#include "rc.h"
 
extern rcvar_t rcfile_exports[], emu_exports[], loader_exports[],
lcd_exports[], rtc_exports[], debug_exports[], sound_exports[],
vid_exports[], joy_exports[], pcm_exports[];
 
 
rcvar_t *sources[] =
{
rcfile_exports,
emu_exports,
loader_exports,
lcd_exports,
rtc_exports,
debug_exports,
sound_exports,
vid_exports,
joy_exports,
pcm_exports,
NULL
};
 
 
void init_exports()
{
rcvar_t **s = sources;
 
while (*s)
rc_exportvars(*(s++));
}
 
 
void show_exports()
{
int i, j;
for (i = 0; sources[i]; i++)
for (j = 0; sources[i][j].name; j++)
printf("%s\n", sources[i][j].name);
}