Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

1
vote
3answers
254 views

JNAerator Unnamed Union Missing in Structure

I'm trying to get JNAerator to generate some JNA backed Java code from a C shared library and everything is fine except that it failed to generate an unnamed union nested inside a structure. Example: ...
1
vote
1answer
565 views

The jnaerator's SimpleMeaningfulExample for generating Java JNA wrappers won't work

I tried the jnaerator SimpleMeaningfulExample (http://code.google.com/p/jnaerator/wiki/SimpleMeaningfulExample) and got: $ java -jar jnaerator-0.9.2.jar -library Test Test.h -o . -v Exception in ...
0
votes
1answer
43 views

How to fork the JVM process that each invocation of a maven plugin runs in?

I am using a code generation plugin (maven-jnaerator-plugin) in a multi-module (aggregator) maven project. Two of the modules need to run the code generation. However, only the first module gets the ...
0
votes
1answer
212 views

Wrap C header file to use it with a dll and JNA(erator)

I have a C header to a certain library I need to access. So I used JNAerator to do the boring transitions of code - after I read that people recommend it these days. Seems to be quite solid from what ...
0
votes
1answer
474 views

JNA: How to access array of struct in struct?

I'm trying to access an array of struct inside a struct. This is the relevant C code reduced to the problem: typedef struct { int a; int b; } fileinfo_t; typedef struct { fileinfo_t **file; ...