
StrongLink SL600
http://www.stronglink-rfid.com
4. DLLFUNCTION
Declarations of all the functions can also be found in the head file in the SDK with DLL.
4.1 SYSTEM FUNCTION
4.1.1 INT WINAPI LIB_VER
Function: Get DLLVersion
Prototype: int WINAPI lib_ver (unsigned int *pVer)
Parameter: pVer: [OUT] DLL version
Return: return 0 if successful
4.1.2 INT WINAPI RF_GET_MODEL
Function: Get Device Type
Prototype: int WINAPI rf_get_model (unsigned short icdev,
unsigned char *pVersion,
unsigned char *pLen)
Parameter: icdev: [IN] Device ID
pVersion: [OUT] response information
pLen: [OUT] lengthofresponseinformation
Return 0 when success
4.1.3 INT WINAPI RF_INIT_TYPE
Function: Set Reader contactless working mode
Prototype: int WINAPI rf_init_type(unsigned short icdev, unsigned char type)
Parameter: icdev: [IN] Device ID
type: [IN] reader working mode
Return 0 when success
Explanation: this function is not effective to the readers only support single protocol.
type = 'A': set SL060 into ISO14443A mode
type = 'B': set ISO14443B mode
type = 'r': set AT88RF020 card mode
type = '1': set ISO15693 mode
4.1.4 INT WINAPI RF_ANTENNA_STA
Function: Manage RF status
Prototype: int WINAPI rf_antenna_sta (unsigned short icdev, unsigned char model)
Parameter: icdev: [IN] Device ID
model: [IN] transmittalstate
Return 0 when success
Explanation: model = 0: turn off RF
model=1:turnonRF
4.1.5 INT WINAPI RF_LIGHT
Function: Manage LED
Prototype: int WINAPI rf_light (unsigned short icdev, unsigned char color)
Parameter: icdev: [IN] Device ID
color: [IN] 0 = off
1=on
Return 0 when success
4.1.6 HANDLE WINAPI RF_INIT_USB
Function: Init usb
Prototype: HANDLE WINAPI rf_init_usb(int HIDNum)