GetDLLVersion Method - neoVI API
int _stdcall icsneoGetDLLVersion();Public Declare Function icsneoGetDLLVersion Lib “icsneo40.dll” () As Integer[DllImport(“icsneo40.dll”)] public static extern int icsneoGetDLLVersion();Examples
char szOut[200];
// get the DLL version and report it
wsprintf(szOut,TEXT("intrepidcs API DLL Version %d\n"), icsneoGetDLLVersion());
MessageBox(hWnd,szOut,TEXT("Message"),MB_ICONINFORMATION);'// get the DLL version information and place in Button text
Button1.Text = "Version " + Convert.ToString(icsneoGetDLLVersion)'// get the DLL version information and place in Button text
Button1.Text = "Version " + Convert.ToString(icsNeoDll.icsneoGetDLLVersion());Last updated