I need to pass a struct using JNA.
The documentation that i have has the following information:
int rdGetStatusHardware (struct StatusHardware *stat)
struct StatusHardware{
unsigned char SerialNumber[12];
unsigned long HWVersion;
unsigned long FWVersion;
unsigned long MemorySize;
unsigned short BootVersion;
unsigned short FPGAVersion;
unsigned long Devices;
unsigned char Reserved[8];
};
I mapped the structure as:
public class StatusHardware extends Structure {
public byte SerialNumber[] = new byte[12];
public byte HWVersion[] = new byte[4];
public byte FWVersion[] = new byte[4];
public byte MemorySize[] = new byte[4];
public byte BootVersion[] = new byte[2];
public byte FPGAVersion[] = new byte[2];
public byte Devices[] = new byte[4];
public byte Reserved[] = new byte[8];
public StatusHardware(Pointer p){
super(p);
}
}
and this is the method in my interface:
int rdGetStatusHardware(Pointer p);
Calling the library:
Pointer ptr = new Memory(40);
int result = CLibrary.INSTANCE.rdGetStatusHardware(ptr);
With this approach I'm getting the following error:
#
# A fatal error has been detected by the Java Runtime Environment:
#
# EXCEPTION_ACCESS_VIOLATION (0xc0000005) at pc=0x00000000, pid=3108, tid=5492
#
# JRE version: 6.0_24-b50
# Java VM: Java HotSpot(TM) Client VM (19.1-b02 mixed mode windows-x86 )
# Problematic frame:
# C 0x00000000
Tried other ways that i found on the internet...with the same result and error.
Is a problem with the structure or the interface?
rdGetStatusHardwareor when attempting to access the contents of the structure/memory? – technomage Sep 4 '12 at 14:42