Skip to content

Commit

Permalink
Merge pull request #2 from r-a-sattarov/master
Browse files Browse the repository at this point in the history
/DevIL/include/IL/il.h: update ifdef condition for MCST-LCC compiler
  • Loading branch information
abma committed Jan 5, 2023
2 parents 9058afe + f3a9044 commit c6feb55
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions DevIL/include/IL/il.h
Expand Up @@ -456,7 +456,7 @@ typedef long long unsigned int ILuint64;
//

// This is from Win32's <windef.h>
#if (_MSC_VER >= 800) || defined(_STDCALL_SUPPORTED) || defined(__BORLANDC__) || defined(__LCC__) && !defined(__e2k__)
#if (_MSC_VER >= 800) || defined(_STDCALL_SUPPORTED) || defined(__BORLANDC__) || defined(__LCC__) && !defined(__MCST__)
#define ILAPIENTRY __stdcall
#define IL_PACKSTRUCT
//#elif defined(linux) || defined(MACOSX) || defined(__CYGWIN__) //fix bug 840364
Expand All @@ -475,7 +475,7 @@ typedef long long unsigned int ILuint64;
#endif

// This is from Win32's <wingdi.h> and <winnt.h>
#if defined(__LCC__) && !defined(__e2k__)
#if defined(__LCC__) && !defined(__MCST__)
#define ILAPI __stdcall
#elif defined(_WIN32) //changed 20031221 to fix bug 840421
#ifdef IL_STATIC_LIB
Expand Down

0 comments on commit c6feb55

Please sign in to comment.