mirror of
https://github.com/CookiePLMonster/SilentPatch.git
synced 2025-01-01 08:43:01 +05:00
32fa0c9e51
Project fixes
27 lines
No EOL
651 B
C++
27 lines
No EOL
651 B
C++
#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 );
|
|
|
|
void DDraw_Common();
|
|
}
|
|
}; |