102 Patches: Detours to the Rescue
C reference for DttR maintainers and modders.
Loading...
Searching...
No Matches
dttr_hooks.h
Go to the documentation of this file.
1#ifndef DTTR_HOOKS_H
2#define DTTR_HOOKS_H
3
4#include <stdint.h>
5#include <windows.h>
6
8int32_t _stdcall DTTR_Hook_WinMainCallback(
9 HINSTANCE hInstance,
10 HINSTANCE hPrevInstance,
11 LPSTR lpCmdLine,
12 int32_t nCmdShow
13);
14
15#endif
int32_t _stdcall DTTR_Hook_WinMainCallback(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR lpCmdLine, int32_t nCmdShow)
Callback target for the patched game Window_RunWinMain routine.
Definition entrypoint.c:574