WinMain is the user provided entry point for graphical Windows based applications.
0
votes
0answers
84 views
LNK2019: unresolved external symbol _main referenced in function ___tmainCRTStartup error when using WinMain
I've been following this tutorial to learn some DirectX programming: http://www.rastertek.com/dx11tut02.html
I'd gotten to the end, tried to build and it threw this error when I compiled:
...
0
votes
2answers
73 views
Boost C++ - Entry points?
Basically I moved on from the main() entry point in my project and changed to a windows project - WINAPI WinMain(...)
However Boost complains saying that cpp_main() is missing.
How can I avoid this?
...
1
vote
1answer
69 views
Convert Win32 Application to Object
I'm pretty new to WinAPI programming, and have written a Win32 application for screen capture. When I run the program, the cursor immediately changes to a crosshair and I can click and drag to ...
0
votes
0answers
135 views
Command Line Parameters Through WinMain and CommandLineToArgvW
I'm encountering a problem when trying to pass a parameter through my program via the command line (eg. -w 1280 -h 1024) while attempting to utilize WinMain. I've looked through every topic I could ...
1
vote
4answers
698 views
WINMAIN and main() in C++ (Extended)
right, I have looked at this post: Difference between WinMain,main and DllMain in C++
I now know that WINMAIN is used for window applications and main() for consoles. But reading the post doesn't ...
7
votes
1answer
1k views
Qt + MinGW + another undefined reference to `WinMain@16' issue
I know, I dug the whole internet to find out what the problem is and nothing has been helpful so far.
I am on Windows 7, using:
Qt 4.8.3: ...
3
votes
2answers
339 views
what does WINAPI stand for
I've started to learn Win32 API in C.
I saw the main function is something like that
int WINAPI WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance,
LPSTR lpCmdLine, int nCmdShow) { .. }
but I ...
0
votes
2answers
146 views
WinAPI - how to organize lots of HWND objects?
As I push forward my first winapi UI, I find myself creating large, uncomfortable stacks of HWND variables in my WinMain file:
HWND foo;
HWND bar;
HWND baz;
HWND etc;
int WINAPI WinMain(...) {}
Of ...
0
votes
1answer
885 views
C++ Linked List Class -> header file [duplicate]
Possible Duplicate:
undefined reference to `WinMain@16'
Ive been working on a circular, double linked list. Decided to create a class and use a header. I'm new to C++ so i checked to ...
1
vote
1answer
155 views
_tWinMain in static lib LNK2019
I try put main(WinMain) in static library:
#include <tchar.h>
#include <Windows.h>
int APIENTRY _tWinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance,
LPTSTR lpCmdLine, int nCmdShow) ...
0
votes
1answer
99 views
visual studio compiler?
i try to complete this tutorial, but i don't know what VS 2008 project to use for it, as everything that i tried gave me either a error C2731: 'wWinMain' : function cannot be overloaded error (for a ...
0
votes
2answers
153 views
Calling WinMain from Java : Possible ? Any other way?
How do i call this method from java :
WINAPI WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR lpCmdLine, int nCmdShow)
Is it possible to call WinMain from java ? I want the value of the ...
-3
votes
1answer
816 views
How to typedef for call CreateThread, LPTHREAD_START_ROUTINE, lpStartAddress, ThreadProc
WARNING: THIS IS AN EXAMPLE CODE.
I need to define this typedef and this definitions to get the code to compile well.
I have the following code and I need to know what should be in __WHAT_HERE1 and ...
0
votes
1answer
928 views
undefined reference to `_WinMain@16' with cygwin and mingw in openssl
I kind of am struggling with OpenSSL over here. I downloaded the current release 1.0.1 and the compilation itself works. I can even call ./apps/openssl.exe. But when I get to the linking process the ...
0
votes
1answer
161 views
Trouble with libgsl and wxwidget
I'm having difficulty building a project in Windows 7 / Visual Studio 2010, and already spent longer than I would admit googling and fixing other errors to get to this point, but frustratingly I can't ...
0
votes
1answer
562 views
How do I set the WINDOWCLASSX hbrBackground alpha channel? (C++)
So, I have a WINDOWCLASSX that I want to set the background to, including the alpha channel, but I only saw an "RGB" macro; no RGBA.
So how do I set alpha on hbrBackground? Here is my code:
...
0
votes
2answers
561 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 ...
-4
votes
1answer
380 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
0
votes
1answer
215 views
Hiding the winmain() function
is there any way to hide the WinMain() function inside a class? Thank you.
0
votes
3answers
295 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
58 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 ...
5
votes
2answers
417 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
359 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 ...
-1
votes
4answers
906 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 ...
1
vote
1answer
2k 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
...
4
votes
1answer
442 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 ...
0
votes
2answers
665 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;
...
3
votes
2answers
470 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 ...
0
votes
1answer
1k 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 ...
3
votes
1answer
460 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
974 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 ...
5
votes
4answers
6k 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
67 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 ...
1
vote
4answers
561 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
206 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 ...
8
votes
4answers
4k 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 ...
0
votes
2answers
253 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
739 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
488 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) {
....
...
2
votes
1answer
388 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 ...
0
votes
1answer
904 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
900 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
2k 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 ...
3
votes
4answers
1k 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,
...
34
votes
6answers
8k 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
2answers
2k 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 ...
5
votes
2answers
1k views
why doesn't winmain set the errorlevel?
int APIENTRY _tWinMain(HINSTANCE hInstance,
HINSTANCE hPrevInstance,
LPTSTR lpCmdLine,
int nCmdShow)
{
MessageBox(NULL, ...
11
votes
3answers
6k 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 ...
12
votes
2answers
5k views
Difference between WinMain,main and DllMain in C++
What is the difference between the three functions and when to use them??

