Itasca C++ Interface
Loading...
Searching...
No Matches
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# undef Rectangle
7# define Rectangle FreddyKreuger
8# include <windows.h>
9# undef Rectangle
10# ifdef max
11# undef max
12# endif
13# ifdef min
14# undef min
15# endif
16#endif
17// EoF