home *** CD-ROM | disk | FTP | other *** search
- /***********************************************************\
- Copyright (C) James Boer, 2002.
- All rights reserved worldwide.
-
- This software is provided "as is" without express or implied
- warranties. You may freely copy and compile this source into
- applications you distribute provided that the copyright text
- below is included in the resulting source code, for example:
- "Portions Copyright (C) James Boer, 2002"
- \***********************************************************/
- #ifndef __COMMON_H
- #define __COMMON_H
-
- #pragma warning(disable:4786)
- #pragma warning(disable:4251)
- #pragma warning(disable:4503)
-
- #include <new>
- #include <iostream>
- #include <fstream>
- #include <cstdio>
- #include <ctime>
- #include <string>
- #include <cassert>
- #include <algorithm>
- #include <list>
- #include <vector>
- #include <map>
- #include <queue>
- #include <stack>
- #include <set>
- #include <functional>
- #include <climits>
- #include <math.h>
-
- #include <tchar.h>
- #include <direct.h>
- #include <process.h>
-
- #include <windows.h>
- #include <mmsystem.h>
- #include <mmreg.h>
- #include <msacm.h>
-
- #include <D3DX8MATH.H>
-
-
-
-
- #endif // __COMMON_H