d3d9 proxy radar loader project

This commit is contained in:
alexey.min
2012-02-04 07:51:41 +00:00
parent ddc3cdddd1
commit 2ac1570bf2
11 changed files with 580 additions and 0 deletions

35
d3d9_proxy_loader/pch.h Normal file
View File

@@ -0,0 +1,35 @@
#define WINVER 0x0501
#define _WIN32_WINNT 0x0501
#define _WIN32_IE 0x0600
#define _CRT_SECURE_NO_WARNINGS
#define _CRT_SECURE_NO_DEPRECATE
// C++ RTL
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <locale.h>
#include <errno.h>
// WinAPI
#include <windows.h>
#include <windowsx.h>
#include <wchar.h>
#include <process.h>
#include <commctrl.h>
#include <mmsystem.h>
#include <ddraw.h>
// STL
#include <vector>
#include <map>
#include <list>
#include <string>
// logger
#include "logger/Logger.h"
// local Direct3D 9 Interface
#include <d3d9.h>
//#include <d3dx9.h>