mirror of
https://github.com/CookiePLMonster/SilentPatch.git
synced 2024-12-29 15:23:02 +05:00
25 lines
No EOL
674 B
C
25 lines
No EOL
674 B
C
#pragma warning(disable:4481) // nonstandard extension used: override specifier 'override'
|
|
#pragma warning(disable:4401) // member is bit field
|
|
#pragma warning(disable:4733) // handler not registered as safe handler
|
|
#pragma warning(disable:4725) // instruction may be inaccurate on some Pentiums
|
|
|
|
#define WIN32_LEAN_AND_MEAN
|
|
#define _CRT_SECURE_NO_WARNINGS
|
|
#define _USE_MATH_DEFINES
|
|
|
|
#define WINVER 0x0501
|
|
#define _WIN32_WINNT 0x0501
|
|
|
|
#include <windows.h>
|
|
#include <limits>
|
|
#include <utility>
|
|
#include <mmsystem.h>
|
|
|
|
#define RwEngineInstance (*rwengine)
|
|
#define RWFRAMESTATICPLUGINSSIZE 24
|
|
|
|
#include <rwcore.h>
|
|
#include <rpworld.h>
|
|
|
|
#include "MemoryMgr.h"
|
|
#include "Maths.h" |