00001 #pragma once
00002 #ifndef Common_H_
00003 #define Common_H_
00004
00005
00006 #define WIN32_LEAN_AND_MEAN // Exclude rarely-used stuff from Windows headers
00007
00008 #include <windows.h>
00009
00010
00011 #include <stdlib.h>
00012 #include <malloc.h>
00013 #include <memory.h>
00014 #include <tchar.h>
00015
00016 #define _ATL_CSTRING_EXPLICIT_CONSTRUCTORS // some CString constructors will be explicit
00017
00018 #include <atlbase.h>
00019 #include <atlwin.h>
00020
00021
00022 #define VERIFY ATLVERIFY
00023 #define ASSERT ATLASSERT
00024
00025 #define V VERIFY
00026 #define S SUCCEEDED
00027
00028 #endif
00029