-
12.7.11 RFID_KILL
Description:
The structure of Kill a tag.
Define:
typedef struct RFID_KILL_TAG {
HWND hWnd;
//Parent window
RFIDPROC lpfnStartProc;
RFIDPROC lpfnStopProc;
INT32U accessPassword;
INT32U killPassword;
}RFID_KILL;
Fields:
hWnd –
The Parent window which issue the Tag operation.
lpfnStartProc
– Application-defined callback function. The RFID Reader Interface call
this function before execute Tag
operation.
lpfnStopProc
– Application-defined callback function. The
RFID Reader Interface call
this function after finished Tag
operation.
accessPassword
– The access password for the tags. A valueof zero indicates no
access password.
kill
Password
– The kill password for the tags. Must not be zero.
12.7.12 RFID_KILL_EX
Description:
Tag Kill extension function's parameter.
Define:
typedef struct RFID_KILL_EX_TAG {
HWND hWnd;
//Parent window
RFIDPROC lpfnStartProc;
RFIDPROC lpfnStopProc;
BYTE accessPassword[8]; //password is 8 bytes' hex char(0~f)
BYTE killPassword[8]; //password is 8 bytes' hex char(0~f)
}RFID_KILL_EX;
Fields:
hWnd
- the same as RFID_ KILL.
lpfnStartProc
– the same as RFID_KILL.
lpfnStopProc
– the same as RFID_KILL.
accessPassword[8]
– The access passowrd for the tags. It’s 8 bytes' hex char(0~f).
kill
Password[8]
– The kill passowrd for the tags. It’s 8bytes' hex char(0~f).