Tagged Questions
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??
6
votes
4answers
1k views
What is the purpose of __in __out __in_opt __allowed(), how do they work? Should I use similar constructs in my own code?
Some of these Preprocessor definitions are in the WinMain function and other windows library functions. What is their purpose? How do they work? and is it good practice to write them into your ...
4
votes
2answers
161 views
Why does prevInstance exist in WinMain and wWinMain if it is always NULL
Since I am a beginner, it may be a very basic question. I am starting DirectX 11, and while creating my first application, wWinMain was used, and while searching for difference between WinMain and ...
4
votes
3answers
123 views
How does MFC's wWinMain end up in the executable?
In MFC, wWinMain is defined in appmodul.cpp. This file is built into mfc90ud.dll from what I can see. However, when I run my application, the call stack shows MyApplication.exe!wWinMain. How has it ...
3
votes
2answers
171 views
Error when statically building a windows application
I have an application that compiles and works fine when i dynamically link everything, but when I want to have a static build of it it will not compile.
In visual studio 2010 I set the Use MFC in a ...
2
votes
1answer
248 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 ...
2
votes
4answers
505 views
WINAPI main function
could you please explain to me the WINAPI word in winmain header ?
in the simpliest way..
#include <windows.h>
int -->WINAPI<-- WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance,
...
2
votes
2answers
904 views
why doesn't winmain set the errorlevel?
int APIENTRY _tWinMain(HINSTANCE hInstance,
HINSTANCE hPrevInstance,
LPTSTR lpCmdLine,
int nCmdShow)
{
MessageBox(NULL, ...
1
vote
4answers
2k views
“APIENTRY _tWinMain” and “WINAPI WinMain” difference
What are the difference from these 2 function?:
int APIENTRY _tWinMain(HINSTANCE hInstance,
HINSTANCE hPrevInstance,
LPTSTR lpCmdLine,
...
0
votes
1answer
73 views
Hiding the winmain() function
is there any way to hide the WinMain() function inside a class? Thank you.
0
votes
3answers
79 views
winmain() function / c++
can you please explain to me the significance of this statement generally written at the end of the WinMain() function:
return (int) msg.wParam;
Im used to ending my console applications with ...
0
votes
2answers
239 views
Embedding WinMain entrypoint into a class?
I was wondering, is it possible to use the entry point of a win32 program - the WinMain - as a class method?
For example;
class cApp {
public:
cApp();
~cApp();
cGuiManager* guiManager;
...
0
votes
1answer
56 views
A Couple Questions About Creating Windows
In trying to get a grasp on creating windows (in Windows OS), I encountered this function definition
LRESULT CALLBACK Window::MsgRouter(HWND hwnd, UINT message, WPARAM wparam, LPARAM lparam)
(taken ...
0
votes
2answers
148 views
Is it correct/proper to use DialogBox as the main window?
Is it correct-proper as in windows doesn't say it's bad or not recommended.
For example like this:
int APIENTRY _tWinMain(HINSTANCE hInstance,
HINSTANCE hPrevInstance,
...
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
610 views
WinMain not called before main (C/C++ Program Entry Point Issue)
I was under the impression that this code
#include <windows.h>
#include <stdio.h>
int WINAPI WinMain (HINSTANCE hInstance, HINSTANCE hPrevInstance, PSTR szCmdLine, int iCmdShow)
{
...
0
votes
4answers
658 views
c++ use of winmain()
I just started learning programming for windows in c++. I had this crazy image, that win32 programming is based on calling windows functions and sending parameters to and from them. Like, when you ...
-1
votes
4answers
136 views
winmain@16 error
i found this code online and im trying to compile it, but gcc keeps on telling me that there is a undefined reference to WinMain@16. i have no idea where it is coming from, so im going to post the ...
-3
votes
1answer
86 views
Overloading WinMain() function while using Unicode character set
How can i overload the WinMain() function while using Unicode character set in Visual Studio? Thank you.
Here's the code i am talking about