Code Example: How to Name a MultiCam Board?
The following code assigns the name MYBOARD to the MultiCam board with DriverIndex = 5.
[C]
//Connecting to driver
MCSTATUS Status = McOpenDriver(NULL);//Renaming the board
Status = McSetParamStr(MC_BOARD, MC_NameBoard+5, "MYBOARD");//Disconnecting from driver
Status = McCloseDriver();