Tagged Questions

4
votes
2answers
396 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 ...
3
votes
1answer
418 views

Error while trying to run a release build of a Qt application on Windows

I'm trying to build the Windows version of my app. The program compiles and runs fine on Qt Creator but when I try to run it standalone it throws the following error: The procedure entry point ...
1
vote
3answers
424 views

Why not call FreeLibrary from entry point function?

I'm writing a DLL that needs to call a separated DLL dynamically multiple times. I would like to keep the callee loaded and then just unload it when my DLL is unloaded. But according to Microsoft, ...
1
vote
1answer
672 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
480 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
0answers
34 views

which method is better for dll initialization?

All my initialization in the dll can be done through a single class constructor; what i did was to declare an object of this class as a global object, and then do all the initialization there. is ...
0
votes
3answers
176 views

How to define an optional entry point into custom Mac OS X framework / dynamic library?

In Windows there is a DllMain and DLL_PROCESS_ATTACH / DLL_PROCESS_DETACH flags, which allow to initialize / free resources after DLL is attached to a process... So how can I specify an entry point in ...
0
votes
1answer
556 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 ...
0
votes
3answers
99 views

What's the principle of LOADDLL.EXE?

It can be used to run arbitary Dynamic Link Library in windows, how can it possibly know the entry point of an arbitary dll?
0
votes
1answer
2k views

“run-time error '453' can't find dll entry point” from vb.net compiled dll referenced by vba

I am coding in vb.net through visual studio 2008. I have successfully compiled a dll file from my code but I continue to get "Run-time error '453'" when I try to reference the dll in vba. I understand ...