2016-01-06 00:01:17 +09:00
|
|
|
#pragma once
|
2018-08-04 22:27:10 -04:00
|
|
|
#include "types.h"
|
2016-01-06 00:01:17 +09:00
|
|
|
|
|
|
|
// vnrhook/const.h
|
|
|
|
// 8/23/2013 jichi
|
|
|
|
// Branch: ITH/common.h, rev 128
|
|
|
|
|
|
|
|
// jichi 1/16/2015: Though called max hook, it means max number of text threads
|
|
|
|
enum { MAX_HOOK = 64 }; // must be larger than HOOK_FUN_COUNT
|
|
|
|
|
|
|
|
//enum { HOOK_SECTION_SIZE = 0x2000 }; // default ITH value
|
|
|
|
// jichi 1/16/2015: Change to a very large number to prevent crash
|
|
|
|
//enum { MAX_HOOK = 0x100 }; // must be larger than HookFunCount
|
2018-08-04 22:27:10 -04:00
|
|
|
enum { HOOK_SECTION_SIZE = MAX_HOOK * sizeof(Hook) * 2 }; // default ITH value is 0x2000 for 32 hook (0x100 per hook)
|
2016-01-06 00:01:17 +09:00
|
|
|
|
|
|
|
// jichi 375/2014: Add offset of pusha/pushad
|
|
|
|
// http://faydoc.tripod.com/cpu/pushad.htm
|
|
|
|
// http://agth.wikia.com/wiki/Cheat_Engine_AGTH_Tutorial
|
|
|
|
//
|
|
|
|
// Warning: The offset in ITH has -4 offset comparing to pusha and AGTH
|
|
|
|
enum pusha_off {
|
|
|
|
pusha_eax_off = -0x4
|
|
|
|
, pusha_ecx_off = -0x8
|
|
|
|
, pusha_edx_off = -0xc
|
|
|
|
, pusha_ebx_off = -0x10
|
|
|
|
, pusha_esp_off = -0x14
|
|
|
|
, pusha_ebp_off = -0x18
|
|
|
|
, pusha_esi_off = -0x1c
|
|
|
|
, pusha_edi_off = -0x20
|
|
|
|
, pusha_off = -0x24 // pushad offset
|
|
|
|
};
|
|
|
|
|
|
|
|
enum HostCommandType {
|
|
|
|
HOST_COMMAND = -1 // null type
|
|
|
|
, HOST_COMMAND_NEW_HOOK = 0
|
|
|
|
, HOST_COMMAND_REMOVE_HOOK = 1
|
|
|
|
, HOST_COMMAND_MODIFY_HOOK = 2
|
|
|
|
, HOST_COMMAND_HIJACK_PROCESS = 3
|
|
|
|
, HOST_COMMAND_DETACH = 4
|
|
|
|
};
|
|
|
|
|
|
|
|
enum HostNotificationType {
|
|
|
|
HOST_NOTIFICATION = -1 // null type
|
|
|
|
, HOST_NOTIFICATION_TEXT = 0
|
|
|
|
, HOST_NOTIFICATION_NEWHOOK = 1
|
2018-08-02 17:16:49 -04:00
|
|
|
, HOST_NOTIFICATION_RMVHOOK = 2
|
2016-01-06 00:01:17 +09:00
|
|
|
};
|
|
|
|
|
|
|
|
// jichi 9/8/2013: The meaning are guessed
|
|
|
|
// Values must be within DWORD
|
|
|
|
// Unused values are as follows:
|
|
|
|
// - 0x100
|
|
|
|
enum HookParamType : unsigned long {
|
|
|
|
USING_STRING = 0x1 // type(data) is char* or wchar_t* and has length
|
|
|
|
, USING_UNICODE = 0x2 // type(data) is wchar_t or wchar_t*
|
|
|
|
, BIG_ENDIAN = 0x4 // type(data) is char
|
|
|
|
, DATA_INDIRECT = 0x8
|
|
|
|
, USING_SPLIT = 0x10 // aware of split time?
|
|
|
|
, SPLIT_INDIRECT = 0x20
|
|
|
|
, MODULE_OFFSET = 0x40 // do hash module, and the address is relative to module
|
2018-08-03 19:53:31 -04:00
|
|
|
//, FUNCTION_OFFSET = 0x80 // do hash function, and the address is relative to funccion
|
2018-08-03 01:48:57 -04:00
|
|
|
, USING_UTF8 = 0x100
|
2018-08-03 19:53:31 -04:00
|
|
|
//, STRING_LAST_CHAR = 0x200
|
2016-01-06 00:01:17 +09:00
|
|
|
, NO_CONTEXT = 0x400
|
|
|
|
, HOOK_EMPTY = 0x800
|
|
|
|
, FIXING_SPLIT = 0x1000
|
2018-08-04 04:33:56 -04:00
|
|
|
, DIRECT_READ = 0x2000 // /R read code instead of classic /H hook code
|
2016-01-06 00:01:17 +09:00
|
|
|
//, HOOK_AUXILIARY = 0x2000 // jichi 12/13/2013: None of known hooks are auxiliary
|
2018-08-03 19:53:31 -04:00
|
|
|
//, RELATIVE_SPLIT = 0x2000 // Artikash 8/3/2018: does nothing
|
2016-01-06 00:01:17 +09:00
|
|
|
, HOOK_ENGINE = 0x4000
|
|
|
|
, HOOK_ADDITIONAL = 0x8000
|
|
|
|
};
|
|
|
|
|
|
|
|
// 6/1/2014: Fixed split value for hok parameter
|
|
|
|
// Fuse all threads, and prevent floating
|
|
|
|
enum { FIXED_SPLIT_VALUE = 0x10001 };
|
|
|
|
|
2018-05-21 04:05:09 -04:00
|
|
|
enum { PIPE_BUFFER_SIZE = 0x1000};
|
|
|
|
|
2018-07-17 17:01:56 -04:00
|
|
|
// jichi 12/25/2013: Header in each message sent to vnrsrv
|
|
|
|
// There are totally three elements
|
|
|
|
// - 0x0 dwAddr hook address
|
|
|
|
// - 0x4 dwRetn return address
|
|
|
|
// - 0x8 dwSplit split value
|
2018-07-17 19:18:36 -04:00
|
|
|
#define HEADER_SIZE sizeof(DWORD) * 3
|
2018-07-17 17:01:56 -04:00
|
|
|
|
2018-06-13 16:24:52 -04:00
|
|
|
#define TIMEOUT 5000 // 5 seconds
|
|
|
|
|
2016-01-06 00:01:17 +09:00
|
|
|
// EOF
|