Tagged Questions

56
votes
10answers
3k views

Is main() really start of a C++ program?

The section $3.6.1/1 from the C++ Standard reads, A program shall contain a global function called main, which is the designated start of the program. Now consider this code, int square(int ...
11
votes
2answers
3k views

Difference between WinMain,main and DllMain in C++

What is the difference between the three functions and when to use them??
8
votes
1answer
132 views

Const-Qualification of Main's Parameters in C++

The C++ standard mandates that all conforming implementations support the following two signatures for main: int main(); int main(int, char*[]); In case of the latter signature, would the addition ...
3
votes
1answer
394 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 ...
2
votes
1answer
250 views

How to add a wrapper to the MFC WinMain?

I want to add a wrapper to the MFC WinMain in order to be able to make a MFC application be able run as GUI application or as a service. Can I add a wrapper to WinMail from MFC without modifying MFC ...
1
vote
3answers
2k views

How to get the entry point of a child process?

I created a child process from within my process with CreateProcess() (in C++) I then continue on using ReadProcessMemory to read through the memory and search for a specific something. I would like ...
0
votes
1answer
73 views

VS C++ 2010 debugging with external entry point [SOLVED]

I'm creating Win32 application and I have two projects. The first one is a static library which contains _tWinMain() function, that is the entry point of a Win32 application. The other one is an ...
0
votes
1answer
63 views

External entry point C++ (lib or dll)

I wondered if it was possible to create an entry point (main or winmain) in an library of some sorts. I'm trying to write a window manager code and I'd like to have the main function in a library with ...
0
votes
0answers
461 views

What are WinMainCRTStartup, tmainCRTStartup, WinMain functions used for? [closed]

Possible Duplicates: “APIENTRY _tWinMain” and “WINAPI WinMain” difference What functions does _WinMainCRTStartup perform? I just started to dive into windows ...
0
votes
3answers
164 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
491 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
1answer
210 views

LNK1561 Linking Error in MSVS2010 when main is defined

I have been making several projects to compile small SDL code tutorials from a tutorial site in Microsoft Visual Studio 2010 using C++>Empty Projects; and all of these projects have compiled fine. In ...
0
votes
1answer
555 views

How to disable WinMain entry point for a MFC application?

I understand that is not possible to have applications with multiple entry points under Windows. I have a MFC application and I added code for making it running as a service (main() entry point and ...
0
votes
3answers
407 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, ...