LibTiePie
0.4.3
Library for interfacing TiePie engineering instruments
|
Functions | |
void | LstSetCallbackDeviceAdded (TpCallback_t pCallback, void *pData) |
Set callback function which is called when a device is added to the list. | |
void | LstSetCallbackDeviceRemoved (TpCallback_t pCallback, void *pData) |
Set callback function which is called when a device is removed from the list. | |
void | LstSetEventDeviceAdded (int fdEvent) |
Set event file descriptor which is set when a device is added to the list. | |
void | LstSetEventDeviceRemoved (int fdEvent) |
Set event file descriptor which is set when a device is removed from the list. | |
void | LstSetEventDeviceAdded (HANDLE hEvent) |
Set event object handle which is set when a device is added to the list. | |
void | LstSetEventDeviceRemoved (HANDLE hEvent) |
Set event object handle which is set when a device is removed from the list. | |
void | LstSetMessageDeviceAdded (HWND hWnd) |
Set window handle to which a WM_LIBTIEPIE_LST_DEVICEADDED message is sent when a device is added to the list. | |
void | LstSetMessageDeviceRemoved (HWND hWnd) |
Set window handle to which a WM_LIBTIEPIE_LST_DEVICEREMOVED message is sent when a device is removed from the list. | |
void LstSetCallbackDeviceAdded | ( | TpCallback_t | pCallback, |
void * | pData | ||
) |
Set callback function which is called when a device is added to the list.
pCallback | Pointer to callback function. |
pData | Optional user data. |
void LstSetCallbackDeviceRemoved | ( | TpCallback_t | pCallback, |
void * | pData | ||
) |
Set callback function which is called when a device is removed from the list.
pCallback | Pointer to callback function. |
pData | Optional user data. |
void LstSetEventDeviceAdded | ( | int | fdEvent | ) |
Set event file descriptor which is set when a device is added to the list.
fdEvent | Event file descriptor. |
void LstSetEventDeviceRemoved | ( | int | fdEvent | ) |
Set event file descriptor which is set when a device is removed from the list.
fdEvent | Event file descriptor. |
void LstSetEventDeviceAdded | ( | HANDLE | hEvent | ) |
Set event object handle which is set when a device is added to the list.
hEvent | A handle to the event object. |
void LstSetEventDeviceRemoved | ( | HANDLE | hEvent | ) |
Set event object handle which is set when a device is removed from the list.
hEvent | A handle to the event object. |
void LstSetMessageDeviceAdded | ( | HWND | hWnd | ) |
Set window handle to which a WM_LIBTIEPIE_LST_DEVICEADDED message is sent when a device is added to the list.
The messages wParam
contains the Device type "device types" and the lParam
contains the serial number of the added device.
hWnd | A handle to the window whose window procedure is to receive the message. |
void LstSetMessageDeviceRemoved | ( | HWND | hWnd | ) |
Set window handle to which a WM_LIBTIEPIE_LST_DEVICEREMOVED message is sent when a device is removed from the list.
The messages wParam
contains the Device type "device types" and the lParam
contains the serial number of the removed device.
hWnd | A handle to the window whose window procedure is to receive the message. |