Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

/DevIL/include/IL/il.h: update ifdef condition for MCST-LCC compiler #2

Merged
merged 1 commit into from Jan 5, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
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