Home  /  Autodocs  /  diskfont.library

NAME

EReleaseInfoA
Release data obtained with EObtainInfoA. (V47)

EReleaseInfo
varargs form of EReleaseInfoA.

SYNOPSIS

error = EReleaseInfoA(EEngine, tagList)
D0 A0 A1

ULONG EReleaseInfoA(struct EGlyphEngine *, struct TagItem *);

error = EReleaseInfo(EEngine, firstTag, ...)

ULONG EReleaseInfo(struct EGlyphEngine *, Tag, ...);

FUNCTION

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.

INPUTS

EEngine
the glyph engine acquired via EOpenEngine() or OpenOutlineFont().

tagList
a tag list containing OT_ tags valid for inquiry paired with the data previously acquired for them with EObtainInfoA. NULL pointers are quietly accepted and ignored for indirect data.

RESULT

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.

EXAMPLE

struct GlyphMap *glyph;
...
if (!(error = EObtainInfo(EEngine, OT_GlyphMap, &glyph, TAG_END)))
{
...
EReleaseInfo(EEngine, OT_GlyphMap, glyph, TAG_END);
}

SEE ALSO

bullet.library/ReleaseInfoA(), EObtainInfoA(), diskfont/diskfonttag.h, diskfont/oterrors.h