

![]() | Start a set with this search |
![]() | Include this search in one of my sets |
![]() | Exclude this search from one of my sets |
![]() | Permalink to these results Paste this link in email or IM: |
| Atom feed for tracking future search results Paste this URL into your reader: |
22 messages in net.java.dev.jna.usersRe: [jna-users] Structure by value an...| From | Sent On | Attachments |
|---|---|---|
| Edroaldo Lummertz da Rocha | Nov 7, 2008 3:21 pm | |
| Timothy Wall | Nov 7, 2008 4:44 pm | |
| Edroaldo Lummertz da Rocha | Nov 10, 2008 6:07 am | |
| Timothy Wall | Nov 10, 2008 6:34 am | |
| Edroaldo Lummertz da Rocha | Nov 10, 2008 6:59 am | |
| Timothy Wall | Nov 10, 2008 7:57 am | |
| Edroaldo Lummertz da Rocha | Nov 10, 2008 8:38 am | |
| Timothy Wall | Nov 10, 2008 10:40 am | |
| Edroaldo Lummertz da Rocha | Nov 10, 2008 12:17 pm | |
| Timothy Wall | Nov 10, 2008 1:46 pm | |
| Edroaldo Lummertz da Rocha | Nov 10, 2008 1:57 pm | |
| Timothy Wall | Nov 10, 2008 6:27 pm | |
| Edroaldo Lummertz da Rocha | Nov 11, 2008 3:25 am | |
| Edroaldo Lummertz da Rocha | Nov 11, 2008 3:40 am | |
| Edroaldo Lummertz da Rocha | Nov 12, 2008 6:42 am | |
| Edroaldo Lummertz da Rocha | Nov 14, 2008 3:46 am | |
| Timothy Wall | Nov 14, 2008 4:37 am | |
| Edroaldo Lummertz da Rocha | Nov 14, 2008 9:41 am | |
| Edroaldo Lummertz da Rocha | Nov 14, 2008 10:05 am | |
| Timothy Wall | Nov 14, 2008 11:31 am | |
| Edroaldo Lummertz da Rocha | Nov 17, 2008 4:35 am | |
| Timothy Wall | Nov 17, 2008 5:17 am |

![]() | Permalink for this message Paste this link in email or IM: |
![]() | Permalink for this thread Paste this link in email or IM: |
| Atom feed for this thread Paste this URL into your reader: |
| Subject: | Re: [jna-users] Structure by value and reference | Actions... |
|---|---|---|
| From: | Timothy Wall (twal...@dev.java.net) | |
| Date: | Nov 10, 2008 7:57:07 am | |
| List: | net.java.dev.jna.users | |
On Nov 10, 2008, at 10:00 AM, Edroaldo Lummertz da Rocha wrote:
Where the bold text is the functions of DLL that I need. I am going
to post the signatures of java functions and the C++ function, for comparasion. I cannot see the errors, the type mapping is correct? I do not get compiler errors and do not get execution error, just does not work.
C signatures
int Initialize_HL(PCHAR BoardID,void ** hDev); int K_Move_Data_HL(void ** hDev,BOOL RW,unsigned short Nb_Words, unsigned short * Buffer,signed long DSPAddress, int MemSpace,char * Symbol,struct HSymTbl SymTable);
LoadUser_HL(void ** hDev,char * FilePath,struct HSymTbl * pSymTable);
Java Assignatures:
public interface SignalRangerInterface extends Library { public int Initialize_HL(String boardId, PointerByReference hDev); public int LoadUser_HL(PointerByReference hDev, String filePath, SignalRanger.HSymTbl pSymTable); public int K_Move_Data_HL(PointerByReference hDev, int rw, short nbWords, short[] buffer, long dSPAdrress, int memSpace, String symbol, SignalRanger.HSymTbl.ByValue symTable);
Change long to NativeLong for DSPAddress.
public int ExecUser_HL(PointerByReference hDev, long dSPAddress, String symbol, SignalRanger.HSymTbl.ByValue pSymTable);
Ditto here.







