I need to go to a pointer to an int function. Now, if I want to pass 5, I do it like this:
int * i = NULL;
int b = 5;
i = &b;
Is there a better way to write it shorter?
I want to pass the bytes that are in i int for this function:
void Write2Asm(void* pxAddress, BYTE * MyBytes, int size)
source
share