Tagged Questions
7
votes
1answer
552 views
What functions does _WinMainCRTStartup perform?
This is part of a series of at least two closely related, but distinct questions. I hope I'm doing the right thing by asking them separately.
I'm trying to get my Visual C++ 2008 app to work without ...
2
votes
1answer
249 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
2answers
910 views
why doesn't winmain set the errorlevel?
int APIENTRY _tWinMain(HINSTANCE hInstance,
HINSTANCE hPrevInstance,
LPTSTR lpCmdLine,
int nCmdShow)
{
MessageBox(NULL, ...
0
votes
1answer
166 views
Where are WPRFLAG and _WINMAIN_ macros defined?
You know,
there are codes like
#ifdef WPRFLAG
and
#ifdef _WINMAIN_
in ctrexe.c . I'm using vs2010)
These macros determine what function is called from entry point.
But I can't find these ...
0
votes
1answer
143 views
Missing WinMain() arguments in Windows SDK sample
In one of the samples that come w/ Windows SDK (the CreateProcessVerb sample), the WinMain code is as follows:
int APIENTRY
wWinMain (HINSTANCE, HINSTANCE, PWSTR pszCmdLine, int)
{
..
Note that ...