mirror of https://github.com/x64dbg/TitanEngine
fix for correct struct alignment
This commit is contained in:
parent
d4c9bacdbf
commit
1a716c70f7
|
|
@ -67,6 +67,9 @@
|
||||||
#define UE_OPTION_IMPORTER_RETURN_NEAREST_APINAME 12
|
#define UE_OPTION_IMPORTER_RETURN_NEAREST_APINAME 12
|
||||||
#define UE_OPTION_IMPORTER_RETURN_API_ORDINAL_NUMBER 13
|
#define UE_OPTION_IMPORTER_RETURN_API_ORDINAL_NUMBER 13
|
||||||
|
|
||||||
|
#pragma pack(push)
|
||||||
|
#pragma pack(1)
|
||||||
|
|
||||||
typedef struct
|
typedef struct
|
||||||
{
|
{
|
||||||
ULONG_PTR BreakPointAddress;
|
ULONG_PTR BreakPointAddress;
|
||||||
|
|
@ -848,8 +851,6 @@ typedef struct _RTL_USER_PROCESS_PARAMETERS {
|
||||||
//Evolution of Process Environment Block (PEB) http://blog.rewolf.pl/blog/?p=573
|
//Evolution of Process Environment Block (PEB) http://blog.rewolf.pl/blog/?p=573
|
||||||
//March 2, 2013 / ReWolf posted in programming, reverse engineering, source code, x64 /
|
//March 2, 2013 / ReWolf posted in programming, reverse engineering, source code, x64 /
|
||||||
|
|
||||||
#pragma pack(push)
|
|
||||||
#pragma pack(1)
|
|
||||||
template <class T>
|
template <class T>
|
||||||
struct LIST_ENTRY_T
|
struct LIST_ENTRY_T
|
||||||
{
|
{
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue