mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-02-04 10:16:17 +01:00
Minor Cygwin fix. (#138405, Roger Leigh)
2004-03-31 Tor Lillqvist <tml@iki.fi> * tests/spawn-test-win32-gui.c: Minor Cygwin fix. (#138405, Roger Leigh)
This commit is contained in:
parent
81f9b7dba5
commit
7f38edf367
@ -1,3 +1,8 @@
|
||||
2004-03-31 Tor Lillqvist <tml@iki.fi>
|
||||
|
||||
* tests/spawn-test-win32-gui.c: Minor Cygwin fix. (#138405, Roger
|
||||
Leigh)
|
||||
|
||||
2004-03-30 Adam Weinberger <adamw@gnome.org>
|
||||
|
||||
* configure.in: Added en_CA to ALL_LINGUAS.
|
||||
|
@ -1,3 +1,8 @@
|
||||
2004-03-31 Tor Lillqvist <tml@iki.fi>
|
||||
|
||||
* tests/spawn-test-win32-gui.c: Minor Cygwin fix. (#138405, Roger
|
||||
Leigh)
|
||||
|
||||
2004-03-30 Adam Weinberger <adamw@gnome.org>
|
||||
|
||||
* configure.in: Added en_CA to ALL_LINGUAS.
|
||||
|
@ -1,3 +1,8 @@
|
||||
2004-03-31 Tor Lillqvist <tml@iki.fi>
|
||||
|
||||
* tests/spawn-test-win32-gui.c: Minor Cygwin fix. (#138405, Roger
|
||||
Leigh)
|
||||
|
||||
2004-03-30 Adam Weinberger <adamw@gnome.org>
|
||||
|
||||
* configure.in: Added en_CA to ALL_LINGUAS.
|
||||
|
@ -1,3 +1,8 @@
|
||||
2004-03-31 Tor Lillqvist <tml@iki.fi>
|
||||
|
||||
* tests/spawn-test-win32-gui.c: Minor Cygwin fix. (#138405, Roger
|
||||
Leigh)
|
||||
|
||||
2004-03-30 Adam Weinberger <adamw@gnome.org>
|
||||
|
||||
* configure.in: Added en_CA to ALL_LINGUAS.
|
||||
|
@ -1,3 +1,8 @@
|
||||
2004-03-31 Tor Lillqvist <tml@iki.fi>
|
||||
|
||||
* tests/spawn-test-win32-gui.c: Minor Cygwin fix. (#138405, Roger
|
||||
Leigh)
|
||||
|
||||
2004-03-30 Adam Weinberger <adamw@gnome.org>
|
||||
|
||||
* configure.in: Added en_CA to ALL_LINGUAS.
|
||||
|
@ -1,3 +1,8 @@
|
||||
2004-03-31 Tor Lillqvist <tml@iki.fi>
|
||||
|
||||
* tests/spawn-test-win32-gui.c: Minor Cygwin fix. (#138405, Roger
|
||||
Leigh)
|
||||
|
||||
2004-03-30 Adam Weinberger <adamw@gnome.org>
|
||||
|
||||
* configure.in: Added en_CA to ALL_LINGUAS.
|
||||
|
@ -1,9 +1,18 @@
|
||||
#include <windows.h>
|
||||
#include <errno.h>
|
||||
#include <stdio.h>
|
||||
#include <string.h>
|
||||
#include <stdlib.h>
|
||||
#include <fcntl.h>
|
||||
|
||||
#ifdef __CYGWIN__
|
||||
/* For read() and write() */
|
||||
#include <unistd.h>
|
||||
/* Cygwin does not prototype __argc and __argv in stdlib.h */
|
||||
extern int __argc;
|
||||
extern char** __argv;
|
||||
#endif
|
||||
|
||||
int _stdcall
|
||||
WinMain (struct HINSTANCE__ *hInstance,
|
||||
struct HINSTANCE__ *hPrevInstance,
|
||||
|
Loading…
Reference in New Issue
Block a user