int stdcall YW_Purse_Initial
(
int ReaderID,
int BlockAddr,
int IniMoney
);
参数 |
类型 |
方向 |
含义 |
ReaderID |
int |
IN |
所要获取的设备标示ID,范围0x0000-0xFFFF,如果未知,则ReaderID=0 |
BlockAddr |
int |
IN |
绝对块号地址 |
IniMoney |
int |
IN |
初始化钱包时的初始值 |
返 回 值:大于0为命令发送成功,小于0为命令发送失败
int stdcall YW_Purse_Initial (int ReaderID,int BlockAddr,int IniMoney);
function YW_Purse_Initial(ReaderID: Integer;BlockAddr: Integer; IniValue: Integer): Integer;stdcall;external YOWOREADERDLL;
Public Declare Function YW_Purse_Initial Lib "YW60x.dll" (ByVal ReaderID As Long, ByVal BlockAddr As Long, ByVal IniValue As Long) As Long
public int YW_Purse_Initial(int ReaderID,int BlockAddr, int IniMoney)
{
int ret;
try
{
JNative fuc = new JNative("YW60x.dll", "YW_Purse_Initial");
fuc.setRetVal(Type.INT);
fuc.setParameter(0, ReaderID);
fuc.setParameter(1,BlockAddr);
fuc.setParameter(2,IniMoney);
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_Purse_Initial(int ReaderID,int BlockAddr, int IniMoney);
public FUNCTION long YW_Purse_Initial (long lReaderID , long BlockAddr , long IniValue ) library "YW60x.dll"