IDiaSymbol::findChildren
Visual Studio 2005
Retrieves the children of the symbol.
HRESULT findChildren (
enum SymTagEnum symtag,
LPCOLESTR name,
DWORD compareFlags,
IDiaEnumSymbols** ppResult
);
Parameters
- symtag
-
[in] Specifies the symbol tags of the children to be retrieved, as defined in the SymTagEnum. Set to SymTagNull for all children to be retrieved.
- name
-
[in] Specifies the name of the children to be retrieved. Set to NULL for all children to be retrieved.
- compareFlags
-
[in] Specifies the comparison options applied to name matching. Values from the NameSearchOptions enumeration can be used alone or in combination.
- ppResult
-
[out] Returns an IDiaEnumSymbols object that contains a list of the child symbols retrieved.
This method is identical to calling the IDiaSession::findChildren method with this symbol as the first parameter.