1 message in net.java.dev.jna.users[jna-users] Help with void**
FromSent OnAttachments
Edroaldo Lummertz da RochaNov 7, 2008 4:01 am 
Actions with this message:
Paste this link in email or IM:
Paste this link in email or IM:
Atom feed for this thread
Paste this URL into your reader:
Subject:[jna-users] Help with void**Actions...
From:Edroaldo Lummertz da Rocha (edro@gmail.com)
Date:Nov 7, 2008 4:01:53 am
List:net.java.dev.jna.users

Hello, sorry if a send this e-mail wrongly, but I do not undestand how post to the list. I am going explain may problem and will be very grateful. I need to use a DLL developed in C/C++ developed by www.softdb.com and I would like to use it in Java. Good, I have the follow signature method in this DLL (SRanger_HL.dll)

int Initialize_HL(PCHAR BoardId, void **hDev);

I have access to a Visual C++ code, and it is used for the following way:

void **refnum; and, when the method is called I have this:

ret = Initialize_HL("SRanger0", &refnum);

How can I do it in Java/JNA? Is it possible?

Thank so much!