int stdcall YW_TOPAZ_WriteBlockAfterErase
(
int ReaderID,
unsigned char *UID,
unsigned char BlockID,
unsigned char *DataWrite,
unsigned char *pDataRet
)
参数 |
类型 |
方向 |
含义 |
ReaderID |
int |
IN |
所要获取的设备标示ID,范围0x0000-0xFFFF,如果未知,则ReaderID=0 |
UID |
unsigned char* |
IN |
TOPAZ卡的UID,目前4字节 |
BlockID |
unsigned char |
IN |
要写入的块号 |
DataWrite |
unsigned char* |
IN |
要写入的数据,8个字节 |
pDataRet |
unsigned char* |
OUT |
写入后的数据,8个字节 |
返 回 值:大于0为命令发送成功,<=0为命令发送失败
int stdcall YW_TOPAZ_WriteBlockAfterErase(int ReaderID,unsigned char *UID, unsigned char BlockID, unsigned char *DataWrite, unsigned char *pDataRet)
function YW_TOPAZ_WriteBlockAfterErase(ReaderID: Integer;UID: PChar; BlockID: Byte;DataWrite: PChar; pDataRet: PChar): Integer;stdcall;external YOWOREADERDLL;
Public Declare Function YW_TOPAZ_WriteBlockAfterErase Lib "YW60x.dll" (ByVal ReaderID As Long, ByRef UID As Byte, ByVal BlockID As Byte, ByRef DataWrite As Byte,
public int YW_TOPAZ_WriteBlockAfterErase(int ReaderID,Pointer UID, byte BlockID, Pointer DataWrite, Pointer pDataRet)
{
int ret;
try
{
JNative fuc = new JNative("YW60x.dll", "YW_TOPAZ_WriteBlockAfterErase");
fuc.setRetVal(Type.INT);
fuc.setParameter(0, ReaderID);
fuc.setParameter(1, UID);
fuc.setParameter(2, BlockID);
fuc.setParameter(3, DataWrite);
fuc.setParameter(4, pDataRet);
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_TOPAZ_WriteBlockAfterErase(int ReaderID,byte[] UID,byte BlockID, byte[] DataWrite, byte[] pDataRet);
public FUNCTION long YW_TOPAZ_WriteBlockAfterErase (long lReaderID , ref char UID[], char BlockID, ref char DataWrite[], ref char pDataRet[]) library "YW60x.dll"