The delimiter that separates different parts of the address in composite address strings can be set in the IPCCLIB_START_DATA structure used by the gc_Start( ) function. The parameter is configurable on a system-wide basis. The following code segment shows how to set the delimiter to be a comma (,).
#define BOARDS_NUM 1
/* initialize start parameters */
IPCCLIB_START_DATA cclibStartData;
memset(&cclibStartData,0,sizeof(IPCCLIB_START_DATA));
cclibStartData.version = 0x0100; // must be set to 0x0100
cclibStartData.delimiter = ',';
cclibStartData.num_boards = BOARDS_NUM;
cclibStartData.board_list = virtBoards;
Click here to contact Telecom Support Resources
Copyright 2002, Intel Corporation