2007-06-06 19:12:12 +03:00
|
|
|
// stdafx.h : include file for standard system include files,
|
|
|
|
// or project specific include files that are used frequently, but
|
|
|
|
// are changed infrequently
|
|
|
|
//
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#define WIN32_LEAN_AND_MEAN // Exclude rarely-used stuff from Windows headers
|
2008-02-26 01:26:50 +02:00
|
|
|
#include <cstdio>
|
2008-08-02 18:08:03 +03:00
|
|
|
#ifdef _WIN32
|
2007-06-06 19:12:12 +03:00
|
|
|
#include <tchar.h>
|
2008-08-02 18:08:03 +03:00
|
|
|
#else
|
|
|
|
#include "tchar_amigaos4.h"
|
|
|
|
#endif
|
2007-06-06 19:12:12 +03:00
|
|
|
#include <string>
|
|
|
|
#include <vector>
|
2008-06-13 11:16:51 +03:00
|
|
|
#include <map>
|
2007-06-28 13:47:28 +03:00
|
|
|
#include <algorithm>
|
2007-06-09 05:32:43 +03:00
|
|
|
#include <fstream>
|
2007-08-12 20:48:05 +03:00
|
|
|
#include "global.h"
|
2007-06-06 19:12:12 +03:00
|
|
|
// TODO: reference additional headers your program requires here
|