Itasca C++ Interface
basewin.h
1 #pragma once
2 // MOO NOTE: THis is intended to be used when you need to include direct native Win32 calls.
3 // Keep that toa minimum, and preferably to only one source file in any given project.
4 #ifdef _WIN32
5 # define VC_EXTRALEAN
6 # define Rectangle FreddyKreuger
7 # include <windows.h>
8 # undef Rectangle
9 # ifdef max
10 # undef max
11 # endif
12 # ifdef min
13 # undef min
14 # endif
15 #endif
16 // EoF