Results 1 to 7 of 7

Thread: use libs under qt4

Hybrid View

Previous Post Previous Post   Next Post Next Post
  1. #1
    Join Date
    Jan 2006
    Posts
    273
    Thanks
    42
    Thanked 1 Time in 1 Post
    Qt products
    Qt3 Qt4
    Platforms
    Windows

    Default Re: use libs under qt4

    Hi,
    You think:
    Qt Code:
    1. FUNCTION CloseDevice();
    To copy to clipboard, switch view to plain text mode 
    instead of:
    Qt Code:
    1. FUNCTION __stdcall CloseDevice();
    To copy to clipboard, switch view to plain text mode 

    It not works

    But __stdcall is not supported by mingw i think, because if i edit the header file to:
    Qt Code:
    1. #ifdef __cplusplus
    2. extern "C" {
    3. #endif
    4.  
    5. #define FUNCTION __declspec(dllimport)
    6.  
    7. FUNCTION long __stdcall OpenDevice(long CardAddress);
    8.  
    9.  
    10. #ifdef __cplusplus
    11. }
    12. #endif
    To copy to clipboard, switch view to plain text mode 
    I can use this function "OpenDevice" without problem.

    What should i do?
    Last edited by raphaelf; 26th February 2006 at 16:19.
    Think DigitalGasoline

  2. #2
    Join Date
    Jan 2006
    Posts
    273
    Thanks
    42
    Thanked 1 Time in 1 Post
    Qt products
    Qt3 Qt4
    Platforms
    Windows

    Default Re: use libs under qt4

    have nobody a idea how to use my header file? I have there a problem with stdcall i think
    Think DigitalGasoline

  3. #3
    Join Date
    Jan 2006
    Location
    Warsaw, Poland
    Posts
    5,372
    Thanks
    28
    Thanked 976 Times in 912 Posts
    Qt products
    Qt3 Qt4
    Platforms
    Unix/X11 Windows

    Default Re: use libs under qt4

    Qt Code:
    1. FUNCTION __stdcall CloseDevice();
    2. FUNCTION __stdcall ReadAllAnalog(long *Data1, long *Data2);
    3. FUNCTION __stdcall OutputAnalogChannel(long Channel, long Data);
    4. FUNCTION __stdcall OutputAllAnalog(long Data1, long Data2);
    5. FUNCTION __stdcall ClearAnalogChannel(long Channel);
    6. FUNCTION __stdcall ClearAllAnalog();
    7. FUNCTION __stdcall SetAnalogChannel(long Channel);
    8. FUNCTION __stdcall SetAllAnalog();
    9. FUNCTION __stdcall WriteAllDigital(long Data);
    10. FUNCTION __stdcall ClearDigitalChannel(long Channel);
    11. FUNCTION __stdcall ClearAllDigital();
    12. FUNCTION __stdcall SetDigitalChannel(long Channel);
    13. FUNCTION __stdcall SetAllDigital();
    14. FUNCTION __stdcall ResetCounter(long CounterNr);
    15. FUNCTION __stdcall SetCounterDebounceTime(long CounterNr, long DebounceTime;
    To copy to clipboard, switch view to plain text mode 
    All of those functions are missing the return value type. Did you try to add "void" between "FUNCTION" and "__stdcall"?

  4. #4
    Join Date
    Jan 2006
    Posts
    273
    Thanks
    42
    Thanked 1 Time in 1 Post
    Qt products
    Qt3 Qt4
    Platforms
    Windows

    Default Re: use libs under qt4

    Hi Jacek!!

    Thank you very much it works..How did you find that out?
    Think DigitalGasoline

  5. #5
    Join Date
    Jan 2006
    Location
    Warsaw, Poland
    Posts
    5,372
    Thanks
    28
    Thanked 976 Times in 912 Posts
    Qt products
    Qt3 Qt4
    Platforms
    Unix/X11 Windows

    Default Re: use libs under qt4

    Quote Originally Posted by raphaelf
    How did you find that out?
    You wrote that "FUNCTION long __stdcall OpenDevice(long CardAddress);" works, so I focused on the differences between this and other declarations.

Similar Threads

  1. Project file LIBS debug/release
    By bunjee in forum Qt Programming
    Replies: 5
    Last Post: 27th July 2015, 05:42
  2. Linking against different Libs
    By AlphaWolf in forum Qt Programming
    Replies: 3
    Last Post: 10th February 2009, 15:25
  3. problem with order of libs during linking
    By minimax in forum Qt Programming
    Replies: 2
    Last Post: 8th January 2008, 10:32
  4. makefile troubles
    By Walsi in forum Qt Programming
    Replies: 6
    Last Post: 12th April 2007, 15:12
  5. Bad relink libs on QT4 Mac OSX (install_name_tool)
    By patrik08 in forum Qt Programming
    Replies: 1
    Last Post: 7th April 2007, 09:01

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
Qt is a trademark of The Qt Company.