7 messages in net.java.dev.jna.usersRe: [jna-users] Reading back function...
FromSent OnAttachments
Bob LittleOct 13, 2008 1:34 pm 
Michael WhiteOct 13, 2008 3:34 pm 
Timothy WallOct 13, 2008 5:11 pm 
Bob LittleOct 14, 2008 7:07 pm 
Timothy WallOct 14, 2008 8:03 pm 
Bob LittleOct 15, 2008 6:18 am 
Timothy WallOct 15, 2008 6:45 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:Re: [jna-users] Reading back function argumentsActions...
From:Timothy Wall (twal@dev.java.net)
Date:Oct 13, 2008 5:11:41 pm
List:net.java.dev.jna.users

On Oct 13, 2008, at 4:34 PM, Bob Little wrote:

Hello,

I need to invoke a C function having this signature:

void functionName(char* subroutineName ,short argc, char* argv...)

This calls a database subroutine which in turn modifies the arguments in the argv list it is passed.

Assuming you actually mean

char* argv[]

then if you pass a String[] any modifications made by the callee will be reflected in the original argument.