Home

Awesome

RebirthGuard

Anti-cheat library for Windows C++

:page_facing_up: Features

:heavy_check_mark: Dependencies

:wrench: How to use

  1. Set options in options.h and build RebirthGuard.
  2. Include RebirthGuardSDK.h and link RebirthGuard.lib in your project.
  3. Build your project.

:memo: Example

#include <Windows.h>
#include <stdio.h>
#include "../RebirthGuard/RebirthGuardSDK.h"
#pragma comment (lib, "RebirthGuard.lib")

int main(void)
{
	printf(RGS("Hello RebirthGuard SampleEXE!\n"));

	LoadLibraryA(RGS("SampleDLL.dll"));

	getchar();

	return 0;
}

:mag: References