]> git.saurik.com Git - wxWidgets.git/blobdiff - src/msw/main.cpp
removed gtk.h include
[wxWidgets.git] / src / msw / main.cpp
index fd950861b2b688b9f950a00d9a38d6f6a7eb9cd4..8f842b4b0fcc754b2e91ff69b779ced2b1aa3011 100644 (file)
@@ -34,7 +34,7 @@
 
 #include "wx/msw/private.h"
 
-// Don't implement WinMain if we're building an MFC/wxWindows hybrid app.
+// Don't implement WinMain if we're building an MFC/wxWidgets hybrid app.
 #if wxUSE_MFC && !defined(NOMAIN)
     #define NOMAIN 1
 #endif
@@ -61,7 +61,7 @@
 
 WXDLLEXPORT int wxEntry(HINSTANCE hInstance,
                         HINSTANCE WXUNUSED(hPrevInstance),
-                        char * WXUNUSED(pCmdLine),
+                        wxCmdLineArgType WXUNUSED(pCmdLine),
                         int nCmdShow)
 {
     // remember the parameters Windows gave us
@@ -107,7 +107,7 @@ extern "C"
 // ----------------------------------------------------------------------------
 
 // Note that WinMain is also defined in dummy.obj, which is linked to
-// an application that is using the DLL version of wxWindows.
+// an application that is using the DLL version of wxWidgets.
 
 #if defined(_WINDLL)
 
@@ -117,7 +117,7 @@ BOOL WINAPI
 DllMain(HANDLE hModule, DWORD fdwReason, LPVOID WXUNUSED(lpReserved))
 {
     // Only call wxEntry if the application itself is part of the DLL.
-    // If only the wxWindows library is in the DLL, then the
+    // If only the wxWidgets library is in the DLL, then the
     // initialisation will be called when the application implicitly
     // calls WinMain.
 #ifndef WXMAKINGDLL