NCM_GetCspFeaturesValueRange( )
Description | Cautions | Example | Error Codes | See Also
Description
The NCM_GetCspFeaturesValueRange( ) function gets the value range for a country specific configuration parameter.
For more information about modifying country-specific parameter values, see Section 2.7, Working with Country Specific Parameters.
The function parameters are defined as follows:
Cautions
The DCM API allocates memory for the data returned by this function. To avoid memory leaks, the client application must deallocate this memory by calling the NCM_Dealloc( ) or NCM_DeallocValue( ) function.
Example
#include "NCMApi.h" ... // // Prepare inputs // NCMVariable variable; variable.name = "Receive Gain"; variable.next = NULL; NCMValue * pRange = NULL; // // Execute // NCMRetCode ncmRc = NCM_GetCspFeaturesValueRange( "US", &variable, &pRange ); if ( ncmRc == NCM_SUCCESS ) { NCMValue * pCurrRange = pRange; while ( pCurrRange != NULL ) { ... pCurrRange = pCurrRange->next; } } else { // Process error ... } // Deallocate memory when through // with it NCM_Dealloc( pRange ); ...Error Codes
See Also
Click here to contact Telecom Support Resources
Copyright 2003, Intel Corporation