How to declare an array of structs located in memory

994 Views Asked by At

Using IDA Pro I have located some array in memory that is a struct array and now I need to declare it it in my code so I can use it to read and write values.

struct SomeStruc{
  bool bSimpleBoolean;
  BYTE nByteValue;
};

// I have already hooked into process and have access to memory.
SomeStruc *someArray = (SomeStruc *)0x<ADDRESS_HERE>;

// 45 is size of array, let's say.
for (int i = 0; i < 45; i++) {
  printf("%i %i", someArray[i].bSimpleBoolean, someArray[i].nByteValue);
}

The problem with that is that it doesn't work. Please, tell me where I wrong. Thank you!

0

There are 0 best solutions below