home *** CD-ROM | disk | FTP | other *** search
/ Windows Graphics Programming / Feng_Yuan_Win32_GDI_DirectX.iso / Samples / include / jlib / jconfig.h < prev    next >
Text File  |  2000-05-16  |  1KB  |  26 lines

  1. //-------------------------------------------------------------------------//
  2. //          Windows Graphics Programming: Win32 GDI and DirectDraw         //
  3. //                        ISBN  0-13-086985-6                              //
  4. //                                                                         //
  5. //  Modified by: Yuan, Feng                             www.fengyuan.com   //
  6. //  Changes    : C++, exception, in-memory source, BGR byte order          //
  7. //  Version    : 1.00.000, May 31, 2000                                    //
  8. //-------------------------------------------------------------------------//
  9.  
  10. /* jconfig.vc --- jconfig.h for Microsoft Visual C++ on Windows 95 or NT. */
  11. /* see jconfig.doc for explanations */
  12.  
  13. #define HAVE_UNSIGNED_CHAR
  14. #define HAVE_UNSIGNED_SHORT
  15. #undef CHAR_IS_UNSIGNED
  16.  
  17. /* Define "boolean" as unsigned char, not int, per Windows custom */
  18. typedef unsigned char boolean;
  19.  
  20. #ifdef JPEG_INTERNALS
  21.  
  22. #undef RIGHT_SHIFT_IS_UNSIGNED
  23.  
  24. #endif /* JPEG_INTERNALS */
  25.  
  26.