2017-09-19 01:13:02 +05:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#define WIN32_LEAN_AND_MEAN
|
|
|
|
|
|
|
|
#define WINVER 0x0501
|
|
|
|
#define _WIN32_WINNT 0x0501
|
|
|
|
#define NOMINMAX
|
|
|
|
|
|
|
|
#include <windows.h>
|
|
|
|
|
|
|
|
namespace Common
|
|
|
|
{
|
|
|
|
namespace Patches
|
|
|
|
{
|
|
|
|
bool FixRwcseg_Patterns();
|
|
|
|
|
|
|
|
void DDraw_III_10( const RECT& desktop, const char* desktopText );
|
|
|
|
void DDraw_III_11( const RECT& desktop, const char* desktopText );
|
|
|
|
void DDraw_III_Steam( const RECT& desktop, const char* desktopText );
|
|
|
|
|
|
|
|
void DDraw_VC_10( const RECT& desktop, const char* desktopText );
|
|
|
|
void DDraw_VC_11( const RECT& desktop, const char* desktopText );
|
|
|
|
void DDraw_VC_Steam( const RECT& desktop, const char* desktopText );
|
2017-09-19 02:11:19 +05:00
|
|
|
|
|
|
|
void DDraw_Common();
|
2017-09-19 01:13:02 +05:00
|
|
|
}
|
|
|
|
};
|