Aug 25, 2021 at 12:36pm
---sorry for my bad english---
i want to use like this
(DWORD(__stdcall*)(DWORD))0x12345678(10);
and i don't want to use like this
1 2 3
|
DWORD(__stdcall* function)(DWORD) = (DWORD(__stdcall*)(DWORD))0x12345678;
function(10);
|
but i have no idea how to do
Last edited on Aug 25, 2021 at 12:46pm
Aug 25, 2021 at 2:35pm
You just need another pair of parentheses:
((DWORD(__stdcall*)(DWORD))0x12345678)(10);