zweigs schwangerschaft nochmal wieder

  • Thread starter Thread starter zweigs schwangerschaft nochmal wieder
  • Start date Start date
Z

zweigs schwangerschaft nochmal wieder

Guest
How can I get address of any procedure in my project? SEE korbaSzael/u-dze-a file gra/Biblioteki.cs or gra/bin/gebug/gra.exe -> Main window->Menu->Pomoc->Biblioteki
I need to correct export address for each entry in export table because it gives me RVA address that i need to transform into memory address before i would be able to call it remotely from other process and from other programing language than Visual Studio.

I used delegates, Func<> or Action<> like below but it returns address which
is outside of my loaded into memory program so it is also no use in fixing export tables.

void static myProc(){}
Delegate myDelegate = new Action(myProc);
// GCHandle gch = GCHandle.Alloc(myDelegate);// for nonstatic procedures
IntPtr ptr = Marshal.GetFunctionPointerForDelegate(myDelegate);


How can I get memory address from export table which lies inside my app loaded into memory?


AND second issue is that Visual Studio fails to set import address table and export address table for *.DLL files. SEE gra/DLL and load it into process by clicking ładuj bibliotekę button on form Biblioteki and than choose file gra/dll.dll. Then select dll.dll in upper combobox to view its details and export and import addresses. SEE that Visual Studio failed to set address tables. HOW can i make Visual Studio to fill export and import tables for DLL?

Continue reading...
 

Similar threads

Z
Replies
0
Views
117
zweigs schwangerschaft nochmal wieder
Z
O
Replies
0
Views
70
okardak onur
O
O
Replies
0
Views
88
okardak onur
O
O
Replies
0
Views
83
okardak onur
O
Back
Top