Tagged Questions
4
votes
2answers
376 views
delphi Import dll function with specified entry point
How can I define this function in Delphi ? I know imports only without entry point and can't find any usefull example :(
That's written in C#
[DllImport("dwmapi.dll", EntryPoint = "#131")]
static ...
2
votes
1answer
66 views
Run continuous custom application logic on server side. Entry point?
I am creating some kind of a plug-in system. Currently I was using WinForms application to load the assemblies, using Assembly.Load and Activator.CreateInstance. The WinForms GUI was supposed to show ...
1
vote
3answers
247 views
What is the earliest entrypoint that the CLR calls before calling any method in an assembly?
In the past years I've occasionally been wondering what equivalent of the (in)famous DLL_PROCESS_ATTACH was available in the .NET world. Any documentation I have says, slightly simplified, that the ...
1
vote
3answers
379 views
Where is the information about the entry point of an assembly written in the assembly?
I used to think that an assembly could have only one main() method until I saw Jon Skeet's MiscUtil in a video lecture he delivered at the Microsoft office in Copenhagen.
So, I wrote this little app ...
1
vote
1answer
642 views
Looking for documentation on entry points for avifil32.dll
I have seen some examples of people using avifil32.dll to read / write AVI files and the DLL is supplied in Windows XP (possibly not Vista / Win 7). However even though its used in an example for the ...
1
vote
5answers
468 views
Moving entry point to DLL in a WinForm app
I am trying to figure out a way to pre-process few things before my WinForm app loads. I tried putting static void Main() in a form within a class library project and commented it out from Program.cs. ...
0
votes
1answer
490 views
How to properly create an entry point on an external .dll resource written in C++ consumed in C#
Long time reader, first time poster. One day I hope to be answering questions on here...
So it's kind of similar to: "Unable to find an entry point named [function] in dll" (c++ to c# type ...
-2
votes
1answer
59 views
Reading PE files EntryPointAdress using c#
Is there a good way to read PE files entrypoint? I found some codes in the following line http://code.cheesydesign.com/?p=572
My code is:
PeHeaderReader reader = new ...