Tagged Questions
WinMain is the user provided entry point for graphical Windows based applications.
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 ...
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??
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 ...
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 ...
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
198 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 ...
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,
...
1
vote
3answers
246 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
1answer
72 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
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
1answer
408 views
programming with NASM in Windows XP
I have the following code which assembles and runs fine on Windows XP 32 bit, 2.09.08 NASM:
; how to compile: nasm -f elf test.asm
; how to link: ld -o test.exe test.o
section .data
section .text
...
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
300 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
1answer
164 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
0answers
483 views
WinMain@16 undefined reference using C/Eclipse/Makefile/MinGW
Today, I wanted to change my makefile around because I was getting warning errors such as "Warning: resolving _send@16 by linking to _send"(or something like that!). I was able to fix all those ...
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
1answer
142 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 ...
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
2answers
408 views
How do I programatically pop up a console from winMain in C?
int WINAPI WinMain (HINSTANCE p1, HINSTANCE p2, LPSTR p3, int p4)
{
}
I want a console to pop up when I click a button,what's the proper way to do it?
UPDATE
How do I output text to that console?
0
votes
1answer
354 views
What's wrong with my using argc/argv this way in c?
This works:
int main( int argc, char *argv[])
{
....
gtk_init(&argc, &argv);
....
But this doesn't:
int WINAPI WinMain (HINSTANCE p1, HINSTANCE p2, LPSTR argv, int argc) {
....
...
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
85 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