No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.

22 líneas
452B

  1. #ifndef HOOK_H
  2. #define HOOK_H
  3. /**
  4. x64 Hooking Library.
  5. */
  6. typedef enum HOOK_STATUS
  7. {
  8. SUCCESS = 0,
  9. NOT_ENOUGH_SPACE = -1,
  10. CANT_ALLOC = -2,
  11. LOOPS_INTO_OVERWRITTEN_CODE = -3
  12. };
  13. /**
  14. \brief
  15. \param functionLength Length of the function you want to hook. If the length isn't known, pass 0 and the library will try to figure it out
  16. */
  17. int hook(void* function, size_t functionLength, void* replacement, void* trampoline);
  18. #endif