Example Program Naming a MultiCam Board
The following code assigns the name MYBOARD to the MultiCam board with DriverIndex=5.
//Connecting to driver
MCSTATUS Status = McOpenDriver(NULL);
//Renaming the board
Status = McSetParamStr(MC_BOARD, MC_NameBoard+5, "MYBOARD");
//Disconnecting from driver
Status = McCloseDriver();
The Status variable can be used for error checking.