hgeResourceManager::GetStringTable
Returns pointer to a named string table.
hgeStringTable *GetStringTable(
const char *name,
int resgroup = 0
);
Parameters
- name
- String table name.
- resgroup
- Resource group identificator.
Return value
If successful, returns pointer to the hgeStringTable object. Otherwise returns 0.
Remarks
You could use the name defined in the resource script or just a plain file name,
either absolute or relative to the application folder or resource package root.
If the string table hasn't been created yet, it will be created.
Otherwise pointer to the existing string table will be returned.
The resgroup parameter is only used if you specify plain file name.
When loading resources defined in resource script, resgroup is taken from the script.
Use the value passed here with Purge
to free the resource. If =0 or omitted - no specific group will be assigned to the recource.
Requirements
Header: hgeresource.h
Import library: hgehelp.lib
|