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!