Skip to content

Instantly share code, notes, and snippets.

View TTFH's full-sized avatar

Adrián Barreto TTFH

View GitHub Profile
@TTFH
TTFH / pros.cpp
Created November 4, 2023 17:41
Analytics disabler for Teardown - pros.sdk.x64.dll
#define WIN32_LEAN_AND_MEAN
#include <windows.h>
#include <stdio.h>
#include <stdint.h>
#define EXPORT extern "C" __declspec(dllexport)
#ifdef _MSC_VER
#define PROXY(target_name, exp_name) __pragma(comment(linker, "/export:" #exp_name "=" #target_name "." #exp_name))
#else