mirror of
https://github.com/dborth/fceugx.git
synced 2024-11-01 23:15:07 +01:00
13 lines
208 B
C
13 lines
208 B
C
#ifndef _DRIVERS_ARGH
|
|
typedef struct {
|
|
char *name;
|
|
int *var;
|
|
|
|
void *subs;
|
|
int substype;
|
|
} ARGPSTRUCT;
|
|
|
|
void ParseArguments(int argc, char *argv[], ARGPSTRUCT *argsps);
|
|
#define _DRIVERS_ARGH
|
|
#endif
|