shithub: rgbds

ref: 618082bcabf83cbf1c46cdcf879b98fbd3f0fed9
dir: /src/link/include/main.h/

View raw version
#ifndef MAIN_H
#define MAIN_H

#include "types.h"

extern void PrintUsage(void);
extern void fatalerror(char *s);
extern char temptext[1024];
extern SLONG fillchar;
extern char smartlinkstartsymbol[256];

enum eOutputType {
	OUTPUT_GBROM,
	OUTPUT_PSION2
};

extern enum eOutputType outputtype;

#endif