EnumSymbolsCallback
1.0 2.0
EnumSymbolsCallback is a callback function pointed to by the lpEnumFunc
parameter of EnumSymbols.
The callback function can have any name. The function s name must appear in the
EXPORT section of the application s module definition file.
int
CALLBACK EnumSymbolsCallback(
LPSYV lpsyv, int csyv, FAR void * lvData
)
Parameters
lpsyv
Symbol
string.
csyv
Count of
symbols in string.
lvData
Address of
application-specific data from EnumSymbols.
Return Value
Returns TRUE
to continue enumeration, or FALSE to stop enumeration.
See Also