I’m interested in some of the entry point functions given here in the DM, but several seem to have been removed from the latest Inform 6 compiler (compiler 6.34 and lib 6.12.2 from ifarchive). The code
[ GamePreRoutine;
print "in GamePreRoutine";
];
results in compilation error
"
Error: Expected routine name but found GamePreRoutine
> [ GamePreRoutine
"
and the code
[BeforeParsing;
print "in BeforeParsing";
];
results in
"
Error: Expected routine name but found BeforeParsing
> [ BeforeParsing
"
Are these functions actually deprecated are am I using them wrong? Assuming the former, where can I find a list of up-to-date entry point functions (and/or where do they appear in the Inform compiler source)?