GFL with DevC++
Posted: Fri Oct 08, 2004 7:57 pm
It's possible to use GFL libraries with DevC++ (mingw compiler) ???? If it's , how to do this ?
Thnks
Thnks
Various discussion boards for XnView and related products
https://newsgroup.xnview.com/
You can use GFL librairies by dynamic loading. Use LoadLibrary/GetProcAdressLuk wrote:It's possible to use GFL libraries with DevC++ (mingw compiler) ???? If it's , how to do this ?
Code: Select all
#ifdef WIN32
#ifdef __BORLANDC__
#pragma option -a8 /* switch to 8-bytes alignment */
#else
#pragma pack (push, before_push)
#pragma pack (8)
#endif
#else
#endif
Code: Select all
#ifdef WIN32
#if defined (__BORLANDC__)
#pragma option -a8 /* switch to 8-bytes alignment */
#elif defined (__MINGW32__)
#pragma pack (push, before_push, 8)
#else
#pragma pack (push, before_push)
#pragma pack (8)
#endif
#else
#endif