ECloseEngine(EEngine)
VOID ECloseEngine(struct EGlyphEngine *);
This function is similar to
bullet.library/CloseEngine() but does not use a (hidden) "BulletBase" variable that may hold the library base of the wrong font engine if not set properly. It uses EEngine->ege_BulletBase as base of the font engine library to be called.
This function releases the engine handle acquired with
EOpenEngine(). It first releases any data acquired with
EObtainInfoA() associated with the engine handle that has not yet been released.
EEngine->ege_GlyphEngine is set to NULL. The only error that can occur is when an invalid engine handle is supplied: the application is assumed not to do that.
EndGame(code, arg1, arg2, arg3, arg3)
{
...
if (EEngine->ege_GlyphEngine != NULL)
if (EEngine->ege_BulletBase != NULL)
CloseLibrary(EEngine->ege_BulletBase);
...
}