int stdcall YW_MFP_L3_Authorization(
int ReaderID,
int KeyMode,
int BlockID,
unsigned char *Key);
參數(shù) |
類(lèi)型 |
方向 |
含義 |
ReaderID |
int |
IN |
所要獲取的設(shè)備標(biāo)示ID,范圍0x0000-0xFFFF,如果未知,則ReaderID=0 |
KeyMode |
unsigned char |
IN |
授權(quán)密鑰類(lèi)別: 0x60->A密鑰 0x61-> B密鑰 Level3 A/B密鑰定義見(jiàn)附錄A |
BlockID |
int |
IN |
塊號(hào)(范圍0x00~0xFF) |
Key |
unsigned char* |
IN |
密鑰,16字節(jié) |
返 回 值:大于0為命令發(fā)送成功,小于0為命令發(fā)送失敗
int stdcall YW_MFP_L3_Authorization(int ReaderID, int KeyMode,int BlockID,unsigned char *Key);
function YW_MFP_L3_Authorization( ReaderID: Integer; KeyMode: Integer; BlockID: Integer; Key: PChar): Integer;stdcall;external YOWOREADERDLL;
Public Declare Function YW_MFP_L3_Authorization Lib "YW60x.dll" (ByVal ReaderID As Long, ByVal KeyMode As Long, ByVal BlockID As Long, ByRef Key As Byte) As Long
public int YW_MFP_L3_Authorization(int ReaderID, int KeyMode,int BlockID,Pointer Key)
{
int ret;
try
{
JNative fuc = new JNative("YW60x.dll", "YW_MFP_L3_Authorization");
fuc.setRetVal(Type.INT);
fuc.setParameter(0, ReaderID);
fuc.setParameter(1, KeyMode);
fuc.setParameter(2, BlockID);
fuc.setParameter(3, Key);
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_MFP_L3_Authorization(int ReaderID, int KeyMode,int BlockID,byte []Key);
public FUNCTION long YW_MFP_L3_Authorization (long lReaderID , long KeyMode , long BlockID , ref char Key[]) library "YW60x.dll"