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# define NOMINMAX
9# define WIN32_LEAN_AND_MEAN
10# include <windows.h>
11# undef Rectangle
12# ifdef max
13# undef max
14# endif
15# ifdef min
16# undef min
17# endif
18#endif
19// EoF