mirror of
https://github.com/Museum-of-Art-and-Digital-Entertainment/macross.git
synced 2025-02-16 11:30:27 +00:00
22 lines
565 B
C
22 lines
565 B
C
#ifndef INITIALIZE_H_
|
|
#define INITIALIZE_H_
|
|
|
|
#include "macrossTypes.h"
|
|
|
|
void chokePukeAndDie(void);
|
|
void initializeStuff(int argc, char **argv);
|
|
void installBuiltInFunctions(void);
|
|
void installPredefinedSymbols(void);
|
|
void installCommandLineDefineSymbols(void);
|
|
void createHashTables(void);
|
|
void queueInputFile(char *name);
|
|
void openFirstInputFile(void);
|
|
bool isDotMName(stringType *fileName);
|
|
bool parseCommandLineDefine(char *arg, char **name, int *value);
|
|
void noteCommandLineDefine(char *arg);
|
|
|
|
/* Actually defined in main.c */
|
|
void printVersion(void);
|
|
|
|
#endif
|