This is for an injected .DLL.
Given the following code:
if ( *(volatile unsigned long*)(0x13E81F4+(4 * *(volatile unsigned long*)0x13E81B0)) < 2)
{
//...
}
Is there a way to write that in a more readable fashion, eg:
if (array[i] < 2)
{
//...
}
(while still using the desired memory addresses)?