Home  /  Autodocs  /  diskfont.library

NAME

EOpenEngine
Acquire engine handle. (V47)

SYNOPSIS

success = EOpenEngine(EEngine)
D0 A0

LONG EOpenEngine(struct EGlyphEngine *)

FUNCTION

This function is similar to bullet.library/OpenEngine() 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 establishes a context for access to the bullet library or another font engine. This context remains valid until it is closed via ECloseEngine(). Each specific context isolates the specification of the various font attributes from other contexts concurrently accessing the same library. A context can be shared among different tasks if the caller uses a locking mechanism (e.g. Semaphores) that ensures that the context is not accessed concurrently and that e.g. a ESetInfo(), EObtainInfo() sequence cannot be interrupted by another task using the same context.

INPUTS

EEngine
pointer to a struct EGlyphEngine that does contain a pointer to the library base of the font engine acquired via OpenLibrary() in EEngine->ege_BulletBase.

RESULT

If TRUE, EEngine->ege_GlyphEngine contains a pointer to a struct GlyphEngine, if FALSE, EEngine->ege_GlyphEngine is NULL.

EXAMPLE

struct EGlyphEngine EEngine;

EEngine.ege_BulletBase = OpenLibrary(EngineName, 0);
if (!EEngine.ege_BulletBase)
EndGame(ERROR_LibOpen, EngineName, 0);
if (!EOpenEngine(&EEngine))
EndGame(ERROR_InternalCall, "EOpenEngine");

ESetInfo(&EEngine, OT_OTagPath, ...)
...

ECloseEngine(&EEngine);
CloseLibrary(EEngine->ege_BulletBase);

SEE ALSO

bullet.library/OpenEngine(), ECloseEngine(), OpenOutlineFont()