Actually, you don't even have to use IIDking.
You just have to write ''call 7C801D7B''.
By the way, after that operation, the address of dll's code is save in ''eax''.
ex:
push addressA(written the name of dll)
call 7C801D7B
mov dword ptr ds:[addressB],eax
So, when you want to use the code in dll, you should write:
jmp dword ptr ds:[addressB+X]
X means the differend address you want to jump to.
You just have to write ''call 7C801D7B''.
By the way, after that operation, the address of dll's code is save in ''eax''.
ex:
push addressA(written the name of dll)
call 7C801D7B
mov dword ptr ds:[addressB],eax
So, when you want to use the code in dll, you should write:
jmp dword ptr ds:[addressB+X]
X means the differend address you want to jump to.