Tagged Questions
15
votes
6answers
3k views
What is a message pump?
In this thread (posted about a year ago) there is a discussion of problems that can come with running Word in a non-interactive session. The (quite strong) advice given there is not to do so. In one ...
9
votes
3answers
4k views
How can I write a Windows application without using WinMain?
Windows GUI applications written in C/C++ have 'WinMain' as an entry point (rather than 'main'). My understanding of this is that the compiler generates a 'main' function to be called by the C ...
4
votes
2answers
163 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 ...
3
votes
2answers
202 views
Assembler: Getting Win32's WinMain on-stack parameters
I need to access the WinMain parameters using assembly, but I don't seem to be able to do so despite that I supposedly know where they are in the stack (DWORD offsets 0 to 16, and 0 to 20 when pushing ...
2
votes
4answers
508 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
912 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,
...
1
vote
3answers
248 views
WinMain exported from a DLL
I am trying to hide the WinMain function inside a DLL in order to avoid typing again much of the code over and over again.
I exported wWinMain from the DLL by declaring it as
extern "C" int WINAPI ...
0
votes
2answers
41 views
How to create a windows application in C++ showing just a TaskDialog
I need to create a windows application in C++ and it has to show just a TaskDialog (see http://msdn.microsoft.com/en-us/library/windows/desktop/bb760540(v=vs.85).aspx ). The TaskDialog should show a ...
0
votes
1answer
30 views
Winmain Cant Display Message in Autostart
I have a win32 program, when run manually, it display a message in WinMain, but when I put the same program under registry (Run) so that when the PC reboots, it will run automatically, the message ...
0
votes
2answers
241 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
303 views
Why __tmainCRTStartup call WinMain when _UNICODE defined?
You can try this right now.
Define both WinMain and wWinMain abd compile it as a static library.
Make a new project for executable file exe.
Set character set setting UNICODE system.(define ...
0
votes
3answers
612 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 ...