53 messages in net.java.dev.jna.usersRe: [jna-users] How do I map X in C t...
FromSent OnAttachments
genc...@web.deMay 20, 2009 6:35 am 
Timothy WallMay 20, 2009 11:50 am 
Ahmet Özgür GencaslanMay 25, 2009 2:15 am 
Timothy WallMay 25, 2009 6:36 pm 
genc...@web.deMay 26, 2009 5:34 am 
genc...@web.deMay 26, 2009 5:37 am 
Timothy WallMay 26, 2009 6:16 am 
genc...@web.deMay 26, 2009 8:49 am 
Timothy WallMay 26, 2009 9:11 am 
Özgür GencaslanMay 27, 2009 12:59 am 
Timothy WallMay 27, 2009 3:52 am 
Zsolt KútiAug 21, 2009 3:00 am 
Zsolt KútiAug 21, 2009 3:32 am 
Daniel KaufmannAug 21, 2009 6:00 am 
Olivier ChafikAug 21, 2009 6:22 am 
Zsolt KútiAug 21, 2009 7:46 am 
Zsolt KútiAug 21, 2009 7:46 am 
Olivier ChafikAug 21, 2009 3:11 pm 
Zsolt KútiAug 21, 2009 11:11 pm 
Zsolt KútiAug 22, 2009 4:02 am 
Zsolt KútiAug 22, 2009 4:05 am 
Timothy WallAug 22, 2009 5:08 am 
Zsolt KútiAug 23, 2009 8:38 am 
Timothy WallAug 23, 2009 9:17 am 
Olivier ChafikAug 23, 2009 10:49 am 
Zsolt KútiAug 23, 2009 11:42 am 
Olivier ChafikAug 23, 2009 4:10 pm 
Zsolt KútiAug 24, 2009 10:17 am 
Olivier ChafikAug 24, 2009 1:56 pm 
Timothy WallAug 24, 2009 2:36 pm 
Olivier ChafikAug 24, 2009 4:17 pm 
Olivier ChafikAug 24, 2009 4:51 pm 
Timothy WallAug 25, 2009 4:43 am 
Timothy WallAug 25, 2009 4:48 am 
Olivier ChafikAug 25, 2009 7:07 am 
Timothy WallAug 25, 2009 7:37 am 
Olivier ChafikAug 25, 2009 8:49 am 
Timothy WallAug 25, 2009 10:39 am 
Olivier ChafikAug 25, 2009 3:02 pm 
Timothy WallAug 26, 2009 6:25 am 
Olivier ChafikAug 26, 2009 11:14 am 
Samuel AudetAug 27, 2009 8:14 am 
Timothy WallAug 27, 2009 8:34 am 
Timothy WallAug 27, 2009 8:42 am 
Olivier ChafikAug 27, 2009 10:02 am 
Olivier ChafikAug 27, 2009 10:08 am 
Olivier ChafikAug 27, 2009 10:13 am 
Timothy WallAug 27, 2009 10:15 am 
Samuel AudetAug 27, 2009 9:01 pm 
Olivier ChafikAug 28, 2009 9:21 am 
Samuel AudetAug 28, 2009 9:40 am 
Timothy WallAug 28, 2009 12:18 pm 
Samuel AudetAug 28, 2009 7:18 pm 
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] How do I map X in C to Y in Java?Actions...
From:Timothy Wall (twal@dev.java.net)
Date:May 25, 2009 6:36:07 pm
List:net.java.dev.jna.users

On May 25, 2009, at 5:15 AM, Ahmet Özgür Gencaslan wrote:

but how cann i call this function, so that the result is accessible to me :

PointerByReference ptr = new PointerByReference(spot_result.getPointer())

lib.klom_spot_get_result_struct(spot_id, ptr, BLOCKING_TIME);

ptr.getValue() will provide you with the returned pointer. Once you've dereferenced to the address of a structure, you can pass that to Structure.useMemory.

I really try to understand but i still fail.

The call

lib.klom_spot_get_result_struct(spot_id, ptr, BLOCKING_TIME)

should put a list of klom_spot_result_s elements in that ptr.

If i make

ptr.getValue()

that returns a Pointer. but i want something like this (pseudo-code)

klom_spot_result_s[] spot_result = new klom_spot_result_s[20]; lib.klom_spot_get_result_struct(spot_id, ptr, BLOCKING_TIME); for(int i = 0; i<spot_result.length; i++) System.out.println(spot_result[i].startTime);

How can i mangae this behaviour?

klom_spot_result_s s = new klom_spot_result_s(); s.useMemory(ptr.getValue(); klom_spot_result_s[] spot_result = (klom_spot_result_s[])s.toArray(LENGTH);