error = EReleaseInfoA(EEngine, tagList)
D0 A0 A1
ULONG EReleaseInfoA(struct EGlyphEngine *, struct TagItem *);
error = EReleaseInfo(EEngine, firstTag, ...)
ULONG EReleaseInfo(struct EGlyphEngine *, Tag, ...);
This function is similar to
bullet.library/ReleaseInfoA() 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 data obtained with
EObtainInfoA(). Data associated with tags that are not indirect, i.e. for which OT_Indirect is not set, need not be released, but it is not an error to do so. Released data may be immediately freed or may become a candidate to be expunged from memory when the system reaches a low memory condition, depending on the library's internal implementation.
Each EReleaseInfoA() tag item must be associated with a prior successfull
EObtainInfoA() call.
This function has no result. The only error that can occur is when the EObtainInfo() and EReleaseInfo() pairs are mismatched: the application is assumed not to do that.
struct GlyphMap *glyph;
...
if (!(error = EObtainInfo(EEngine, OT_GlyphMap, &glyph, TAG_END)))
{
...
EReleaseInfo(EEngine, OT_GlyphMap, glyph, TAG_END);
}
bullet.library/ReleaseInfoA(),
EObtainInfoA(), diskfont/diskfonttag.h, diskfont/oterrors.h