EnumSymbols 

1.0     2.0     

Enumerates strings in a symbol graph in order of most probable to least probable.

UINT EnumSymbols( LPSYG lpsyg, UINT cstrMax, ENUMPROC lpEnumFunc, LPVOID lvData )

Parameters

lpsyg

Address of the symbol graph SYG1AOCY..

cstrMax

Maximum number of strings to enumerate.

lpEnumFunc

Address of enumeration function.

lvData

Application-specific data.

Return Value

Returns the number of strings enumerated.

Comments

The EnumSymbols function enumerates all symbol strings (to a maximum defined by cstrMax) contained in the symbol graph that lpsyg points to. The lpEnumFunc parameter points to the enumeration function called with each enumeration.

To generate all the symbols from a symbol graph, set cstrMax equal to the value retrieved by passing lpsyg to GetSymbolCount232HAIC.

See Also

EnumSymbolsCallback, FirstSymbolFromGraph, SYG