1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
|
/* glkstart.c: Unix-specific startup code -- sample file.
Designed by Andrew Plotkin <erkyrath@eblong.com>
http://www.eblong.com/zarf/glk/index.html
This is Unix startup code for the simplest possible kind of Glk
program -- no command-line arguments; no startup files; no nothing.
Remember, this is a sample file. You should copy it into the Glk
program you are compiling, and modify it to your needs. This should
*not* be compiled into the Glk library itself.
*/
#include "glk.h"
#include "glkstart.h"
glkunix_argumentlist_t glkunix_arguments[] = {
{ NULL, glkunix_arg_End, NULL }
};
int glkunix_startup_code(glkunix_startup_t *data)
{
return TRUE;
}
|