modified: n.fq
[GalaxyCodeBases.git] / tools / vbindiff / win32 / config.h
blob03a283e80f2e563b7dcf72ca40ae08817939cdc5
1 //--------------------------------------------------------------------
2 //
3 // Visual Binary Diff
4 // Copyright 1997-2005 by Christopher J. Madsen
5 //
6 // Include file for standard system include files,
7 // or project specific include files that are used frequently,
8 // but are changed infrequently
9 //
10 // This program is free software; you can redistribute it and/or
11 // modify it under the terms of the GNU General Public License as
12 // published by the Free Software Foundation; either version 2 of
13 // the License, or (at your option) any later version.
15 // This program is distributed in the hope that it will be useful,
16 // but WITHOUT ANY WARRANTY; without even the implied warranty of
17 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 // GNU General Public License for more details.
20 // You should have received a copy of the GNU General Public License
21 // along with this program. If not, see <http://www.gnu.org/licenses/>.
22 //--------------------------------------------------------------------
24 // Stop complaining about lengthy names of template expansions:
25 #pragma warning(disable: 4786)
27 #define WIN32_LEAN_AND_MEAN
28 #include <windows.h>
29 #include <crtdbg.h> // _ASSERT
31 #define ASSERT _ASSERTE
33 #define WIN32_CONSOLE 1
35 #include "version.h"
37 /////////////////////////////////////////////////////////////////////////////
38 // Local Variables:
39 // mode: c++
40 // c-file-style: "cjm"
41 // End: