| 1 |
|
/*========================================================================= |
| 2 |
|
|
| 3 |
|
Program: Insight Segmentation & Registration Toolkit |
| 4 |
|
Module: $RCSfile: itkWindows.h.html,v $ |
| 5 |
|
Language: C++ |
| 6 |
|
Date: $Date: 2006/01/17 19:15:49 $ |
| 7 |
|
Version: $Revision: 1.4 $ |
| 8 |
|
|
| 9 |
|
Copyright (c) Insight Software Consortium. All rights reserved. |
| 10 |
|
See ITKCopyright.txt or http://www.itk.org/HTML/Copyright.htm for details. |
| 11 |
|
|
| 12 |
|
This software is distributed WITHOUT ANY WARRANTY; without even |
| 13 |
|
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR |
| 14 |
|
PURPOSE. See the above copyright notices for more information. |
| 15 |
|
|
| 16 |
NMS |
=========================================================================*/ |
| 17 |
|
/** This file is used to create the smallest windows.h possible. |
| 18 |
|
* Also it removes a few annoying #define's in windows.h. */ |
| 19 |
|
#ifndef __itkWindows_h |
| 20 |
|
#define __itkWindows_h |
| 21 |
|
#ifndef NOMINMAX |
| 22 |
|
#define NOMINMAX |
| 23 |
|
#endif |
| 24 |
|
#define WIN32_LEAN_AND_MEAN |
| 25 |
|
#include <windows.h> |
| 26 |
|
#include <winbase.h> |
| 27 |
|
#endif |
| 28 |
|
|
| 29 |
EOF |
|