44 lines
859 B
C++
44 lines
859 B
C++
#pragma once
|
|
|
|
#include "targetver.h"
|
|
|
|
#define _CRT_SECURE_NO_DEPRECATE
|
|
#define _CRT_SECURE_NO_WARNINGS
|
|
|
|
// Windows headers:
|
|
#include <winsock2.h>
|
|
#include <windows.h>
|
|
#include <windowsx.h>
|
|
#include <commctrl.h>
|
|
#include <commdlg.h>
|
|
#include <shellapi.h>
|
|
#include <shlobj.h>
|
|
#include <richedit.h>
|
|
|
|
// C/C++ RunTime headers:
|
|
#include <stdlib.h>
|
|
#include <stdio.h>
|
|
#include <stdarg.h>
|
|
#include <malloc.h>
|
|
#include <memory.h>
|
|
#include <tchar.h>
|
|
#include <string.h>
|
|
#include <process.h>
|
|
#include <math.h>
|
|
#include <time.h>
|
|
#include <locale.h>
|
|
|
|
// C++ Standard Templates Library
|
|
#include <map>
|
|
#include <vector>
|
|
#include <list>
|
|
|
|
// Image libraries headers (libPNG, libJPEG):
|
|
#include <libpng/png.h>
|
|
#include <libjpeg/jpeglib.h>
|
|
#include <libjpeg/jerror.h>
|
|
|
|
// L2 Packets library headers:
|
|
#include <L2Packets/L2Packets.h>
|
|
|