int stdcall YW_SR512_GetUID
(
int ReaderID,
unsigned char *UID
);
参数 |
类型 |
方向 |
含义 |
ReaderID |
int |
IN |
所要获取的设备标示ID,范围0x0000-0xFFFF,如果未知,则ReaderID=0 |
UID |
unsigned char* |
OUT |
UID,8个字节 |
返 回 值:大于0为命令发送成功,小于0为命令发送失败
注意:本功能适合SRI512/1K/2K/4K、SLIX4K卡。
int stdcall YW_SR512_GetUID(int ReaderID,unsigned char *UID);
function YW_SR512_GetUID(ReaderID: Integer; UID: PChar): Integer;stdcall;external YOWOREADERDLL;
Public Declare Function YW_SR512_GetUID Lib "YW60x.dll" (ByVal ReaderID As Long, ByRef UID As Byte) As Long
public int YW_SR512_GetUID(int ReaderID,Pointer UID)
{
int ret;
try
{
JNative fuc = new JNative("YW60x.dll", "YW_SR512_GetUID");
fuc.setRetVal(Type.INT);
fuc.setParameter(0, ReaderID);
fuc.setParameter(1, UID);
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_SR512_GetUID(int ReaderID,byte [] UID);
public FUNCTION long YW_SR512_GetUID (long lReaderID , ref char UID[]) library "YW60x.dll"