int stdcall YW_SR176_Lock(
int ReaderID,
unsigned char LockByte
);
參數 |
類型 |
方向 |
含義 |
ReaderID |
int |
IN |
所要獲取的設備標示ID,范圍0x0000-0xFFFF,如果未知,則ReaderID=0 |
LockByte |
unsigned char |
IN |
鎖數據,1個字節,詳情見SR176手冊 |
返 回 值:大于0為命令發送成功,小于0為命令發送失敗
int stdcall YW_SR176_Lock(int ReaderID, unsigned char LockByte);
function YW_SR176_Lock(ReaderID: Integer; LockByte: Byte): Integer;stdcall;external YOWOREADERDLL;
Public Declare Function YW_SR176_Lock Lib "YW60x.dll" (ByVal ReaderID As Long, ByVal LockByte As Byte) As Long
public int YW_SR176_Lock(int ReaderID, byte LockByte)
{
int ret;
try
{
JNative fuc = new JNative("YW60x.dll", "YW_SR176_Lock");
fuc.setRetVal(Type.INT);
fuc.setParameter(0, ReaderID);
fuc.setParameter(1, LockByte);
fuc.invoke();
ret = fuc.getRetValAsInt();
}
catch(NativeException e)
{
ret = -1;
}
catch(IllegalAccessException e)
{
ret = -2;
}
return ret;
}
[DllImport("YW60x.dll")]
public static extern int YW_SR176_Lock(int ReaderID, byte LockByte);
public FUNCTION long YW_SR176_Lock (long lReaderID , char LockByte) library "YW60x.dll"