Added WXFAR to the char* param in the WinMain declaration for clarity

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/branches/WX_2_2_BRANCH@7086 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Guillermo Rodriguez Garcia
2000-04-08 11:59:56 +00:00
parent 7b68a8190e
commit ffe8056c56

View File

@@ -383,7 +383,8 @@ public:
#define IMPLEMENT_WXWIN_MAIN \
extern "C" int WXAPIENTRY WinMain(WXHINSTANCE hInstance,\
WXHINSTANCE hPrevInstance,\
char *m_lpCmdLine, int nCmdShow)\
char WXFAR *m_lpCmdLine,\
int nCmdShow)\
{\
return wxEntry(hInstance, hPrevInstance, m_lpCmdLine, nCmdShow);\
}