Page cover image

FreeObject Method - neoVI API

This method releases system resources used by the neoVI device.

void _stdcall icsneoFreeObject(void * hObject);

Parameters

hObject

**** [in] Specifies the driver object created by OpenNeoDevice.

Return Values

None.

Remarks

This method is used to release any resources that were allocated by OpenNeoDevice. Applications that create neoVI handles should release them using this method, however, the intrepidCS API will release any resources that it created for the client application when the client application ends and the API is unloaded. The LabVIEW neoClosePort.vi will call the FreeObject API.

Examples

icsneoFreeObject(hObject);  //Free the memory associated with our driver object

Last updated