Function pointers ?
OOkkaay... So i have a problem:
I have a pointer, to a function:
"0x12345" (for example)...
I know excatly the parameter list (int X, int Y, string Text)
in C++, its easy to solve:
But how the hell can i do it in C# ?
(Without a plus C++ Dll)
I have a pointer, to a function:
"0x12345" (for example)...
I know excatly the parameter list (int X, int Y, string Text)
in C++, its easy to solve:
Code:
_asm
{
push 0
push 0
push text
call 0x12345
}
(Without a plus C++ Dll)