mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-12-08 01:24:49 +01:00
#define HELPER_CONSOLE in gspawn-win32-helper-console.c
2008-05-19 Tor Lillqvist <tml@novell.com> * glib/Makefile.am: #define HELPER_CONSOLE in gspawn-win32-helper-console.c * glib/gspawn-win32-helper.c: Compile a main() instead of WinMain() if HELPER_CONSOLE is defined. svn path=/trunk/; revision=6909
This commit is contained in:
committed by
Tor Lillqvist
parent
78bdc9397b
commit
fa60c1ecdf
@@ -147,11 +147,16 @@ protect_wargv (wchar_t **wargv,
|
||||
return argc;
|
||||
}
|
||||
|
||||
#ifndef HELPER_CONSOLE
|
||||
int _stdcall
|
||||
WinMain (struct HINSTANCE__ *hInstance,
|
||||
struct HINSTANCE__ *hPrevInstance,
|
||||
char *lpszCmdLine,
|
||||
int nCmdShow)
|
||||
#else
|
||||
int
|
||||
main (int ignored_argc, char **ignored_argv)
|
||||
#endif
|
||||
{
|
||||
int child_err_report_fd = -1;
|
||||
int helper_sync_fd = -1;
|
||||
|
||||
Reference in New Issue
Block a user