plug-ins/script-fu/script-fu.c there is script-fu server on Win32.

2005-02-19  Sven Neumann  <sven@gimp.org>

	* plug-ins/script-fu/script-fu.c
	* plug-ins/script-fu/siod-wrapper.c: there is script-fu server on
	Win32. Reverted this change, again!
This commit is contained in:
Sven Neumann 2005-02-19 01:56:52 +00:00 committed by Sven Neumann
parent 267b6b25cd
commit 695874dfd4
4 changed files with 7 additions and 12 deletions

View File

@ -1,3 +1,9 @@
2005-02-19 Sven Neumann <sven@gimp.org>
* plug-ins/script-fu/script-fu.c
* plug-ins/script-fu/siod-wrapper.c: there is script-fu server on
Win32. Reverted this change, again!
2005-02-19 Hans Breuer <hans@breuer.org>
* app/base/pixel-processor.c : TILE_WIDTH is used unconditionally

View File

@ -1209,11 +1209,9 @@ marshall_proc_db_call (LISP a)
/* reverse the return values */
return_val = nreverse (return_val);
#ifndef G_OS_WIN32
/* if we're in server mode, listen for additional commands for 10 ms */
if (script_fu_server_get_mode ())
script_fu_server_listen (10);
#endif
#ifdef GDK_WINDOWING_WIN32
/* This seems to help a lot on Windoze. */
@ -1245,9 +1243,7 @@ script_fu_menu_register_call (LISP a)
static LISP
script_fu_quit_call (LISP a)
{
#ifndef G_OS_WIN32
script_fu_server_quit ();
#endif
return NIL;
}

View File

@ -249,12 +249,9 @@ script_fu_run (const gchar *name,
/*
* The script-fu server for remote operation
*/
#ifndef G_OS_WIN32
script_fu_server_run (name, nparams, param,
nreturn_vals, return_vals);
#else
g_warning ("No script-fu server on win32");
#endif
}
else if (strcmp (name, "plug_in_script_fu_eval") == 0)
{

View File

@ -1209,11 +1209,9 @@ marshall_proc_db_call (LISP a)
/* reverse the return values */
return_val = nreverse (return_val);
#ifndef G_OS_WIN32
/* if we're in server mode, listen for additional commands for 10 ms */
if (script_fu_server_get_mode ())
script_fu_server_listen (10);
#endif
#ifdef GDK_WINDOWING_WIN32
/* This seems to help a lot on Windoze. */
@ -1245,9 +1243,7 @@ script_fu_menu_register_call (LISP a)
static LISP
script_fu_quit_call (LISP a)
{
#ifndef G_OS_WIN32
script_fu_server_quit ();
#endif
return NIL;
}