Added a guard to not double define __WIN_DRIVER__ macro.

This commit is contained in:
harry 2023-01-27 08:14:58 -05:00
parent 85dfcef243
commit d4d4001d32
1 changed files with 1 additions and 1 deletions

View File

@ -131,7 +131,7 @@ typedef uint32_t uint32;
#endif
#if defined(WIN32) && !defined(__QT_DRIVER__)
#if defined(WIN32) && !defined(__QT_DRIVER__) && !defined(__WIN_DRIVER__)
#define __WIN_DRIVER__
#endif