1
1
Fork 0
mirror of https://github.com/QB64-Phoenix-Edition/QB64pe.git synced 2024-09-20 05:34:47 +00:00

Silence warning if already defined

This commit is contained in:
Matthew Kilgore 2024-02-13 01:49:18 -05:00
parent 0a0e6d472f
commit 784ccf2067

View file

@ -18,9 +18,11 @@
*/ */
#ifdef WIN32 #ifdef WIN32
# define QB64_WINDOWS # define QB64_WINDOWS
# ifndef _WIN32_WINNT
// This supports Windows Vista and up // This supports Windows Vista and up
# define _WIN32_WINNT 0x0600 # define _WIN32_WINNT 0x0600
# define WINVER 0x0600 # define WINVER 0x0600
# endif
# define QB64_BACKSLASH_FILESYSTEM # define QB64_BACKSLASH_FILESYSTEM
# ifdef _MSC_VER # ifdef _MSC_VER