LibTiePie  0.8.0
Library for interfacing TiePie engineering instruments
Device removed

Description

Functions to set notifications that are triggered when a device is removed from the list.

Functions

void LstSetCallbackDeviceRemoved (TpCallbackDeviceList_t pCallback, void *pData)
 Set a callback function which is called when a device is removed from the device list. More...
 
void LstSetEventDeviceRemoved (int fdEvent)
 Set an event file descriptor which is set when a device is removed from the device list. More...
 
void LstSetEventDeviceRemoved (HANDLE hEvent)
 Set an event object handle which is set when a device is removed from the device list. More...
 
void LstSetMessageDeviceRemoved (HWND hWnd)
 Set a window handle to which a WM_LIBTIEPIE_LST_DEVICEREMOVED message is sent when a device is removed from the device list. More...
 

Function Documentation

void LstSetCallbackDeviceRemoved ( TpCallbackDeviceList_t  pCallback,
void *  pData 
)

Set a callback function which is called when a device is removed from the device list.

Parameters
[in]pCallbackA pointer to the callback function. Use NULL to disable.
[in]pDataOptional user data.
Status values
LIBRARY_NOT_INITIALIZEDThe library is not initialized, see LibInit().
LIBTIEPIESTATUS_SUCCESS
Since
0.5
void LstSetEventDeviceRemoved ( int  fdEvent)

Set an event file descriptor which is set when a device is removed from the device list.

Parameters
[in]fdEventan event file descriptor. Use <0 to disable.
Note
This function is only available on GNU/Linux.
Status values
LIBRARY_NOT_INITIALIZEDThe library is not initialized, see LibInit().
LIBTIEPIESTATUS_SUCCESS
Since
0.4.0
void LstSetEventDeviceRemoved ( HANDLE  hEvent)

Set an event object handle which is set when a device is removed from the device list.

Parameters
[in]hEventA handle to the event object. Use NULL to disable.
Note
This function is only available on Windows.
Status values
LIBRARY_NOT_INITIALIZEDThe library is not initialized, see LibInit().
LIBTIEPIESTATUS_SUCCESS
Since
0.4.0
void LstSetMessageDeviceRemoved ( HWND  hWnd)

Set a window handle to which a WM_LIBTIEPIE_LST_DEVICEREMOVED message is sent when a device is removed from the device list.

The parameters of the message contain the following:

  • wParam contains the device types.
  • lParam contains the serial number of the removed device.
Parameters
[in]hWndA handle to the window whose window procedure is to receive the message. Use NULL to disable.
Note
This function is only available on Windows.
Status values
LIBRARY_NOT_INITIALIZEDThe library is not initialized, see LibInit().
LIBTIEPIESTATUS_SUCCESS
Since
0.4.0