0
votes
4answers
101 views
JNA/ByteBuffer not getting freed and causing C heap to run out of memory
Let me start by saying that my understanding of how JNA and Java direct native memory allocations is visceral at best, so I'm trying to describe my understanding of what's going on …
0
votes
1answer
10 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 . …
0
votes
2answers
30 views
How do I compile and run this Java Native Access (JNA) example?
I can compile this JNA example code (from step 2 of https://jna.dev.java.net/#getting_started):
package com.sun.jna.examples;
import com.sun.jna.Library;
import com.sun.jna.Nativ …
0
votes
1answer
71 views
Well-supported Java ADSI wrapper library?
Does anyone know of a good wrapper for the Windows ADSI libraries for Java?
(I'm trying to avoid writing my own in JNA - and I'd like to use something standard.)
0
votes
1answer
26 views
JNA ByteBuffer statvfs
I am trying to get the free space on the / folder using statvfs call from java,
I have check the size of statvfs struct from c it shows 44 bytes, I have allocated a byte buffer us …
0
votes
0answers
10 views
Java JNA GetWindowTextA does not return
Java JNA GetWindowTextA does not return for certain window if and only if the application has no GUI window. When the same application runs with SWT GUI front end, everything is OK …
1
vote
1answer
7 views
Locating Libraries
I am playing with JNA on Mac OS X and Linux. My question is if i am looking for a function "if_nametoindex" how to figure out which library to load? Most of the example i could fin …
1
vote
1answer
34 views
JNA Resources for OS X
I am looking for reading material on using JNA on OS X, there lots of examples on the web for windows but i can't find anything for OS X. I know that the idea is the same but i hav …
-1
votes
3answers
79 views
Invalid memory access of location with Rococoa
I've been trying to code a simple screenshot application using rococoa (java to osx cocoa api library), and managed to get as far as actually taking the screenshot, and then saving …
0
votes
2answers
21 views
jna call to kernel32.CreateToolhelp32Snapshot in shutdown hook crashes the VM
If a thread sets a shutdown hook using
Runtime.getRuntime().addShutdownHook();
calls via jna the method:
kernel32.CreateToolhelp32Snapshot (0x00000002, 0)
it crashes the VM. …
0
votes
2answers
152 views
How to map enum in JNA
Hi,
I have the following enum how do i map in jna ??
This enum is further referenced in structure.
typedef enum
{
eFtUsbDeviceNotShared,
eFtUsbDeviceSharedActive,
eFtUsbDevi …
0
votes
1answer
49 views
Creating a CFString object with JNA
I'm trying to get the hang of using JNA with Mac OS X. I want to access a Carbon library, for which there is no Cocoa equivalent, so Rococoa can't help me (I think...)
I'm stuck w …
3
votes
4answers
243 views
Use JNI instead of JNA to call native code?
JNA seems a fair bit easier to use to call native code compared to JNI. In what cases would you use JNI over JNA?
1
vote
2answers
128 views
JNA-Mapping Delphi Function
Hi!
How do i map this function with JNA:
Delphi code:
function getData(InData1: PChar;
InData2: PChar;
Data: TArray16;
var …
0
votes
2answers
152 views
Whats the equivalent to IntPtr (C#) in Java?
Whats the equivalent to IntPtr (C#) in Java (JNA)?
