This commit is contained in:
Arnold 2020-03-13 10:25:44 +08:00 committed by patricejiang
parent b0524ddeef
commit 75339bfdc4
No known key found for this signature in database
GPG Key ID: 301C66D10A4E92C3
1 changed files with 12 additions and 0 deletions

View File

@ -264,6 +264,18 @@ typedef enum { FALSE = 0, TRUE = 1 } boolean;
#endif
#if _WIN32
# ifdef FALSE /* in case these macros already exist */
# undef FALSE /* values of boolean */
# endif
# ifdef TRUE
# undef TRUE
# endif
typedef enum { FALSE = 0, TRUE = 1 } boolean;
#endif
/*
* The remaining options affect code selection within the JPEG library,
* but they don't need to be visible to most applications using the library.