int stdcall YW_SRIX4K_Check(
int ReaderID,
unsigned char *Key,
unsigned char *Signature
)
參數(shù) |
類型 |
方向 |
含義 |
ReaderID |
int |
IN |
所要獲取的設(shè)備標(biāo)示ID,范圍0x0000-0xFFFF,如果未知,則ReaderID=0 |
Key |
unsigned char* |
IN |
密鑰,6個(gè)字節(jié) |
Signature |
unsigned char* |
OUT |
輸出簽名,3個(gè)字節(jié) |
返 回 值:大于0為命令發(fā)送成功,小于0為命令發(fā)送失敗
int stdcall YW_SRIX4K_Check(int ReaderID, unsigned char *Key, unsigned char *Signature)
function YW_SRIX4K_Check(ReaderID: Integer; Key: PChar; Signature: PChar): Integer;stdcall;external YOWOREADERDLL;
Public Declare Function YW_SRIX4K_Check Lib "YW60x.dll" (ByVal ReaderID As Long, ByRef Key As Byte, ByRef Signature As Byte) As Long
public int YW_SRIX4K_Check(int ReaderID, Pointer Key, Pointer Signature)
{
int ret;
try
{
JNative fuc = new JNative("YW60x.dll", "YW_SRIX4K_Check");
fuc.setRetVal(Type.INT);
fuc.setParameter(0, ReaderID);
fuc.setParameter(1, Key);
fuc.setParameter(2, Signature);
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_SRIX4K_Check(int ReaderID, byte [] Key, byte [] Signature);
public FUNCTION long YW_SRIX4K_Check (long lReaderID , ref char Key[], ref char Signature[]) library "YW60x.dll"