Heya
I started to develop my program in pure C# with the managed_fasm library.
But while reading stuff and programming things I thought about writing the low level stuff in C++.
Now I'm a bit stuck and want to ask two questions:
1) I want to handle my stuff with EndScene detouring to my function.
First of all how do I find the "EndScene" offset through IDA, can't seem to find it.
2) After I inject my C++ .dll to WoW how do I call it functions with C#?
(Is there a way to check wether the function was called in process?)
Would a simple:
be enough?Code:[DllImport("MyLib")] static extern void Target(ulong guid);
Thanks for your thoughts