What are the difference from these 2 function?:

int APIENTRY _tWinMain(HINSTANCE hInstance,
                     HINSTANCE hPrevInstance,
                     LPTSTR    lpCmdLine,
                     int       nCmdShow)

int WINAPI WinMain(HINSTANCE hInstance,
                     HINSTANCE hPrevInstance,
                     LPTSTR    lpCmdLine,
                     int       nCmdShow)
link|improve this question

77% accept rate
if you defined _UNICODE, then the second example would error because LPTSTR would be WSTR and wouldn't fit with WinMain, both WINAPI and APIENTRY are defined as __stdcall – Kaije Jan 13 '11 at 15:36
Right click on _tWinMain -> choose go to definition... – Jimbo Jan 13 '11 at 15:39
2  
Your WinMain() declaration isn't correct, the 3rd argument is LPSTR. Both are archaic, you should be using wWinMain today. – Hans Passant Jan 13 '11 at 15:59
feedback

4 Answers

up vote 12 down vote accepted

_tWinMain is just a #define shortcut in tchar.h to the appropriate version of WinMain.

If _UNICODE is defined, then _tWinMain expands to wWinMain. Otherwise, _tWinMain is the same as WinMain.

The relevant macro looks something like this (there's actually a lot of other code interspersed):

#ifdef  _UNICODE
#define _tWinMain  wWinMain
#else
#define _tWinMain  WinMain
#endif
link|improve this answer
This is correct answer! – Nawaz Jan 13 '11 at 15:15
feedback

In this article this header line is quoted:

#define _tWinMain WinMain

The only difference is the type of the return value.

EDIT

This is incorrect, please see the answer above by Cody Gray for the correct answer.

link|improve this answer
They both return int – David Heffernan Jan 13 '11 at 15:05
They return int APIENTRY and int WINAPI. Some compilers with certain error/warning flags complain if you interchange them. – nightcracker Jan 13 '11 at 15:06
1  
no, they both return int – David Heffernan Jan 13 '11 at 15:31
feedback

From this link:

_tWinMain actually does take the hPrevInstance parameter, but that parameter isn''t used.

_tWinMain is just a #define to WinMain (in TCHAR.h).

There is no difference between the two.

and

_tWinMain is defined to WinMain if UNICODE is not defined, and to wWinMain if it is. its purpose is to let you write code that will build both under ansi and under unicode.

link|improve this answer
1  
Other posts further down on the same page you link to suggest that they are not exactly the same. The difference between the two depends on whether or not _UNICODE is defined. – Cody Gray Jan 13 '11 at 15:08
@Cody Yes, good catch. – chrisaycock Jan 13 '11 at 15:11
feedback

They've got different names; one uses APIENTRY, the other WINAPI.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.