mirror of
https://github.com/barkeser2002/ripcord-fix.git
synced 2026-09-25 01:49:50 +03:00
46 lines
866 B
C
46 lines
866 B
C
#define UNICODE
|
|
#define VC_EXTRALEAN
|
|
#define NOATOM
|
|
#define NOHELP
|
|
#define NOPROFILER
|
|
#define NOGDICAPMASKS
|
|
#define NOATOM
|
|
#define NOSERVICE
|
|
#define NOMETAFILE
|
|
#define NOMINMAX
|
|
#define NOKANJI
|
|
#define NODRAWTEXT
|
|
#define NOCOLOR
|
|
#define NOSYSMETRICS
|
|
#define NOMENUS
|
|
#define NOKEYSTATES
|
|
#define NOWH
|
|
#define NOCOMM
|
|
#define NOMCX
|
|
#define NOIME
|
|
#define NODEFERWINDOWPOS
|
|
#define WIN32_LEAN_AND_MEAN
|
|
#define WIN32_EXTRA_LEAN
|
|
#include <Windows.h>
|
|
#include <Psapi.h>
|
|
#include <Shlwapi.h>
|
|
#include "ext/minhook/MinHook.c"
|
|
#include <stdint.h>
|
|
#include <stdio.h>
|
|
|
|
typedef int8_t i8;
|
|
typedef int16_t i16;
|
|
typedef int32_t i32;
|
|
typedef int64_t i64;
|
|
typedef uint8_t u8;
|
|
typedef uint16_t u16;
|
|
typedef uint32_t u32;
|
|
typedef uint64_t u64;
|
|
|
|
#define HIJACKED_DLL "UxTheme.dll"
|
|
#define SUPPORTED_VERSION "0.4.29"
|
|
|
|
#include "util.c"
|
|
#include "hook.c"
|
|
#include "main.c"
|