int stdcall YW_Felica_ReadWithoutEncryption
(
int ReaderID,
unsigned char *IDM,
unsigned char NumberofService,
unsigned char *ServiceCodeList,
unsigned char NumberofBlock,
unsigned char LengthofBlockList,
unsigned char *BlockList,
unsigned char *Status1,
unsigned char *Status2,
unsigned char *pBlockData
)
參數 |
類型 |
方向 |
含義 |
ReaderID |
int |
IN |
所要獲取的設備標示ID,范圍0x0000-0xFFFF,如果未知,則ReaderID=0 |
IDM |
unsigned char* |
IN |
Felica卡卡號,8字節 |
NumberofService |
unsigned char |
IN |
Service數量 |
ServiceCodeList |
unsigned char* |
IN |
Service內容,字節數為2* NumberofService |
NumberofBlock |
unsigned char |
IN |
Block塊的數量 |
LengthofBlockList |
unsigned char |
IN |
Block列表的字節長度 |
BlockList |
unsigned char* |
IN |
Block列表的內容 |
Status1 |
unsigned char* |
OUT |
讀取后的狀態字節Status1,1字節 |
Status2 |
unsigned char* |
OUT |
讀取后的狀態字節Status2,1字節 |
pBlockData |
unsigned char* |
OUT |
讀到的塊數據,只有當函數返回>0時,此處才有返回,字節數為NumberofBlock*16,如果失敗,請查看狀態Status1,Status2 |
返 回 值:大于0為命令發送成功,<=0為命令發送失敗
int stdcall YW_Felica_ReadWithoutEncryption(int ReaderID, unsigned char *IDM,unsigned char NumberofService, unsigned char *ServiceCodeList, unsigned char NumberofBlock, unsigned char LengthofBlockList, unsigned char *BlockList, unsigned char *Status1, unsigned char *Status2, unsigned char *pBlockData)
function YW_Felica_ReadWithoutEncryption(ReaderID: Integer; IDM: PChar;
Public Declare Function YW_Felica_ReadWithoutEncryption Lib "YW60x.dll" (ByVal ReaderID As Long, ByRef IDM As Byte, _
public int YW_Felica_ReadWithoutEncryption(int ReaderID, Pointer IDM,
byte NumberofService, Pointer ServiceCodeList,
byte NumberofBlock, byte LengthofBlockList, Pointer BlockList,
Pointer Status1, Pointer Status2, Pointer pBlockData)
{
int ret;
try
{
JNative fuc = new JNative("YW60x.dll", "YW_Felica_ReadWithoutEncryption");
fuc.setRetVal(Type.INT);
fuc.setParameter(0, ReaderID);
fuc.setParameter(1, IDM);
fuc.setParameter(2, NumberofService);
fuc.setParameter(3, ServiceCodeList);
fuc.setParameter(4, NumberofBlock);
fuc.setParameter(5, LengthofBlockList);
fuc.setParameter(6, BlockList);
fuc.setParameter(7, Status1);
fuc.setParameter(8, Status2);
fuc.setParameter(9, pBlockData);
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_Felica_ReadWithoutEncryption(int ReaderID, byte[] IDM,byte NumberofService, byte[] ServiceCodeList,byte NumberofBlock, byte
public FUNCTION long YW_Felica_ReadWithoutEncryption (long lReaderID , ref char IDM[],char NumberofService , ref char ServiceCodeList[],char NumberofBlock , char