obfuscate.h 294 B

123456789101112131415
  1. #pragma once
  2. #include <stdint.h>
  3. #ifdef __cplusplus
  4. extern "C" {
  5. #endif
  6. /* this is a workaround to A/Vs going crazy whenever certain functions (such as
  7. * OpenProcess) are used */
  8. extern void *get_obfuscated_func(HMODULE module, const char *str, uint64_t val);
  9. #ifdef __cplusplus
  10. }
  11. #endif