Tagged Questions
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 ...
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 ...
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
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
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)
{
...