| 123456789101112131415 |
- #pragma once
- #include <stdint.h>
- #ifdef __cplusplus
- extern "C" {
- #endif
- /* this is a workaround to A/Vs going crazy whenever certain functions (such as
- * OpenProcess) are used */
- extern void *get_obfuscated_func(HMODULE module, const char *str, uint64_t val);
- #ifdef __cplusplus
- }
- #endif
|