mirror of
https://github.com/geode-sdk/geode.git
synced 2024-11-30 03:15:38 -05:00
29 lines
418 B
C
29 lines
418 B
C
|
#ifndef DOBBY_MONITOR_H
|
||
|
#define DOBBY_MONITOR_H
|
||
|
|
||
|
#include <stdlib.h> /* getenv */
|
||
|
#include <stdio.h>
|
||
|
#include <string.h>
|
||
|
|
||
|
#include <iostream>
|
||
|
#include <fstream>
|
||
|
|
||
|
#include <set>
|
||
|
#include <unordered_map>
|
||
|
|
||
|
#include "dobby.h"
|
||
|
|
||
|
#define LOG printf
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
extern "C" {
|
||
|
#endif
|
||
|
|
||
|
int DobbyHook(void *function_address, void *replace_call, void **origin_call);
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
}
|
||
|
#endif
|
||
|
|
||
|
#endif // !1DOBBY_MONITOR
|