Hello again. I thought I should send some info from the docs I have for this sdk I'm using about the unmanaged call I'm trying to make:
S32 AIL_enumerate_filter_attributes( HPROVIDER filter, HINTENUM *next, RIB_INTERFACE_ENTRY *dest ); In Parameters --- filter specifies the filter to enumerate the filter-level attributes and preferences of. Out Parameters --- next is a pointer that MSS uses to keep track of the next attribute to return. You initialize the next variable with the constant HINTENUM_FIRST before the first call to AIL_enumerate_filter_attributes. --- dest points to an structure of type RIB_INTERFACE_ENTRY that receives the attribute information. The most important field in this RIB structure is "entry_name" which is a pointer to the attribute name (which can then be used in the AIL_filter_attribute and AIL_set_filter_preference functions. Returns 0, if no further filter attributes were found, non-zero if another attribute was found. Thanks again, Ron