mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-11-10 10:50:10 +00:00
Use MAX_PATH (from windef.h) insted of _MAX_PATH (from stdlib.h in mingw
2002-08-26 Tor Lillqvist <tml@iki.fi> * gdk/win32/gdkwindow-win32.c (RegisterGdkClass): Use MAX_PATH (from windef.h) insted of _MAX_PATH (from stdlib.h in mingw and MSVC, but not there in Cygwin) (#91681, Masahiro Sakai).
This commit is contained in:
parent
5abc7156b6
commit
eab30a1223
@ -1,3 +1,9 @@
|
||||
2002-08-26 Tor Lillqvist <tml@iki.fi>
|
||||
|
||||
* gdk/win32/gdkwindow-win32.c (RegisterGdkClass): Use MAX_PATH
|
||||
(from windef.h) insted of _MAX_PATH (from stdlib.h in mingw and
|
||||
MSVC, but not there in Cygwin) (#91681, Masahiro Sakai).
|
||||
|
||||
Mon Aug 26 12:21:16 BST 2002 Tony Gale <gale@gtk.org>
|
||||
|
||||
* docs/tutorial/package-db-tutorial.sh: cleanups
|
||||
|
@ -1,3 +1,9 @@
|
||||
2002-08-26 Tor Lillqvist <tml@iki.fi>
|
||||
|
||||
* gdk/win32/gdkwindow-win32.c (RegisterGdkClass): Use MAX_PATH
|
||||
(from windef.h) insted of _MAX_PATH (from stdlib.h in mingw and
|
||||
MSVC, but not there in Cygwin) (#91681, Masahiro Sakai).
|
||||
|
||||
Mon Aug 26 12:21:16 BST 2002 Tony Gale <gale@gtk.org>
|
||||
|
||||
* docs/tutorial/package-db-tutorial.sh: cleanups
|
||||
|
@ -1,3 +1,9 @@
|
||||
2002-08-26 Tor Lillqvist <tml@iki.fi>
|
||||
|
||||
* gdk/win32/gdkwindow-win32.c (RegisterGdkClass): Use MAX_PATH
|
||||
(from windef.h) insted of _MAX_PATH (from stdlib.h in mingw and
|
||||
MSVC, but not there in Cygwin) (#91681, Masahiro Sakai).
|
||||
|
||||
Mon Aug 26 12:21:16 BST 2002 Tony Gale <gale@gtk.org>
|
||||
|
||||
* docs/tutorial/package-db-tutorial.sh: cleanups
|
||||
|
@ -1,3 +1,9 @@
|
||||
2002-08-26 Tor Lillqvist <tml@iki.fi>
|
||||
|
||||
* gdk/win32/gdkwindow-win32.c (RegisterGdkClass): Use MAX_PATH
|
||||
(from windef.h) insted of _MAX_PATH (from stdlib.h in mingw and
|
||||
MSVC, but not there in Cygwin) (#91681, Masahiro Sakai).
|
||||
|
||||
Mon Aug 26 12:21:16 BST 2002 Tony Gale <gale@gtk.org>
|
||||
|
||||
* docs/tutorial/package-db-tutorial.sh: cleanups
|
||||
|
@ -1,3 +1,9 @@
|
||||
2002-08-26 Tor Lillqvist <tml@iki.fi>
|
||||
|
||||
* gdk/win32/gdkwindow-win32.c (RegisterGdkClass): Use MAX_PATH
|
||||
(from windef.h) insted of _MAX_PATH (from stdlib.h in mingw and
|
||||
MSVC, but not there in Cygwin) (#91681, Masahiro Sakai).
|
||||
|
||||
Mon Aug 26 12:21:16 BST 2002 Tony Gale <gale@gtk.org>
|
||||
|
||||
* docs/tutorial/package-db-tutorial.sh: cleanups
|
||||
|
@ -1,3 +1,9 @@
|
||||
2002-08-26 Tor Lillqvist <tml@iki.fi>
|
||||
|
||||
* gdk/win32/gdkwindow-win32.c (RegisterGdkClass): Use MAX_PATH
|
||||
(from windef.h) insted of _MAX_PATH (from stdlib.h in mingw and
|
||||
MSVC, but not there in Cygwin) (#91681, Masahiro Sakai).
|
||||
|
||||
Mon Aug 26 12:21:16 BST 2002 Tony Gale <gale@gtk.org>
|
||||
|
||||
* docs/tutorial/package-db-tutorial.sh: cleanups
|
||||
|
@ -310,14 +310,14 @@ RegisterGdkClass (GdkWindowType wtype)
|
||||
/* initialize once! */
|
||||
if (0 == hAppIcon)
|
||||
{
|
||||
gchar sLoc [_MAX_PATH+1];
|
||||
gchar sLoc [MAX_PATH+1];
|
||||
|
||||
if (0 != GetModuleFileName (gdk_app_hmodule, sLoc, _MAX_PATH))
|
||||
if (0 != GetModuleFileName (gdk_app_hmodule, sLoc, MAX_PATH))
|
||||
{
|
||||
hAppIcon = ExtractIcon (gdk_app_hmodule, sLoc, 0);
|
||||
if (0 == hAppIcon)
|
||||
{
|
||||
if (0 != GetModuleFileName (gdk_dll_hinstance, sLoc, _MAX_PATH))
|
||||
if (0 != GetModuleFileName (gdk_dll_hinstance, sLoc, MAX_PATH))
|
||||
hAppIcon = ExtractIcon (gdk_dll_hinstance, sLoc, 0);
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user