|
GLG Toolkit, C / C++ API Library
Version 4.6
|
Functions | |
| GlgIH | GlgIHGetCurrIH (void) |
| Retrieves ID of the current active interface handler. More... | |
| GlgIHEntryPoint | GlgIHGetFunction (GlgIH ih) |
| Returns function that implements the handler's logic. More... | |
| GlgIHEntryPoint | GlgIHGetPrevFunction (void) |
| Returns function used to implement the parent handler of the currently active handler. More... | |
| GlgIH | GlgIHGetPrevIH (void) |
| Retrieves ID of the currently active interface handler's parent handler. More... | |
| GlgIH GlgIHGetCurrIH | ( | void | ) |
Retrieves ID of the current active interface handler.
The current active handler can also be accessed by using GLG_IH_CURR macro.
| GlgIHEntryPoint GlgIHGetFunction | ( | GlgIH | ih | ) |
Returns function that implements the handler's logic.
| ih | Handler ID. |
The GLG_IH_CURR macro can be used as the ih parameter to access the current handler. The following example demonstrates the use of GlgIHGetFunction to identify the currently active handler.
| GlgIHEntryPoint GlgIHGetPrevFunction | ( | void | ) |
Returns function used to implement the parent handler of the currently active handler.
The parent handler is the handler preceding the current handler on the handler stack.
| GlgIH GlgIHGetPrevIH | ( | void | ) |
Retrieves ID of the currently active interface handler's parent handler.
The parent handler is the handler preceding the current active handler on the stack of installed handlers.