From ffe8056c56d89815c5315ce2f1921c397e145d76 Mon Sep 17 00:00:00 2001 From: Guillermo Rodriguez Garcia Date: Sat, 8 Apr 2000 11:59:56 +0000 Subject: [PATCH] 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 --- include/wx/app.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/include/wx/app.h b/include/wx/app.h index 464a789e57..c6b1fe58f6 100644 --- a/include/wx/app.h +++ b/include/wx/app.h @@ -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);\ }