mirror of https://github.com/GNOME/gimp.git
use MAIN macro
This commit is contained in:
parent
d996031ab0
commit
f40a836e6c
|
@ -1,3 +1,11 @@
|
|||
Fri Apr 23 08:31:50 1999 ape@lrdpf.spacetec.no (Asbjorn Pettersen)
|
||||
|
||||
* plug-ins/lic/lic.c: MAIN at the end of file.
|
||||
* plug-ins/despeckle/despeckle.c:
|
||||
* plug-ins/destripe/destripe.c:
|
||||
* plug-ins/png/png.c:
|
||||
* plug-ins/sgi/sgi.c: Use MAIN() macro.
|
||||
|
||||
1999-04-22 Jay Cox <jaycox@earthlink.net>
|
||||
|
||||
* app/edit_selection.c: removed some nonfunctional code.
|
||||
|
|
|
@ -43,6 +43,9 @@
|
|||
* Revision History:
|
||||
*
|
||||
* $Log$
|
||||
* Revision 1.15 1999/04/23 06:35:14 asbjoer
|
||||
* use MAIN macro
|
||||
*
|
||||
* Revision 1.14 1999/01/15 17:33:24 unammx
|
||||
* 1999-01-15 Federico Mena Quintero <federico@nuclecu.unam.mx>
|
||||
*
|
||||
|
@ -235,13 +238,7 @@ int despeckle_vals[4] = { 3, FILTER_ADAPTIVE, 7, 248 };
|
|||
* 'main()' - Main entry - just call gimp_main()...
|
||||
*/
|
||||
|
||||
int
|
||||
main(int argc, /* I - Number of command-line args */
|
||||
char *argv[]) /* I - Command-line args */
|
||||
{
|
||||
return (gimp_main(argc, argv));
|
||||
}
|
||||
|
||||
MAIN()
|
||||
|
||||
/*
|
||||
* 'query()' - Respond to a plug-in query...
|
||||
|
|
|
@ -124,13 +124,7 @@ int avg_width = 36;
|
|||
* 'main()' - Main entry - just call gimp_main()...
|
||||
*/
|
||||
|
||||
int
|
||||
main(int argc, /* I - Number of command-line args */
|
||||
char *argv[]) /* I - Command-line args */
|
||||
{
|
||||
return (gimp_main(argc, argv));
|
||||
}
|
||||
|
||||
MAIN()
|
||||
|
||||
/*
|
||||
* 'query()' - Respond to a plug-in query...
|
||||
|
|
|
@ -1291,8 +1291,6 @@ void set_default_settings(void)
|
|||
licvals.effect_image_id=0;
|
||||
}
|
||||
|
||||
MAIN()
|
||||
|
||||
static void query(void)
|
||||
{
|
||||
static GParamDef args[] =
|
||||
|
@ -1431,3 +1429,5 @@ void lic_noninteractive(GDrawable *drawable)
|
|||
printf("Noninteractive not yet implemented! Sorry.\n");
|
||||
}
|
||||
|
||||
MAIN()
|
||||
|
||||
|
|
|
@ -37,6 +37,9 @@
|
|||
* Revision History:
|
||||
*
|
||||
* $Log$
|
||||
* Revision 1.16 1999/04/23 06:33:13 asbjoer
|
||||
* use MAIN macro
|
||||
*
|
||||
* Revision 1.15 1999/04/19 00:17:49 mitch
|
||||
* 1999-04-19 Michael Natterer <mitschel@cs.tu-berlin.de>
|
||||
*
|
||||
|
@ -323,13 +326,7 @@ int runme = FALSE;
|
|||
* 'main()' - Main entry - just call gimp_main()...
|
||||
*/
|
||||
|
||||
int
|
||||
main(int argc, /* I - Number of command-line args */
|
||||
char *argv[]) /* I - Command-line args */
|
||||
{
|
||||
return (gimp_main(argc, argv));
|
||||
}
|
||||
|
||||
MAIN()
|
||||
|
||||
/*
|
||||
* 'query()' - Respond to a plug-in query...
|
||||
|
|
|
@ -43,6 +43,9 @@
|
|||
* Revision History:
|
||||
*
|
||||
* $Log$
|
||||
* Revision 1.15 1999/04/23 06:35:14 asbjoer
|
||||
* use MAIN macro
|
||||
*
|
||||
* Revision 1.14 1999/01/15 17:33:24 unammx
|
||||
* 1999-01-15 Federico Mena Quintero <federico@nuclecu.unam.mx>
|
||||
*
|
||||
|
@ -235,13 +238,7 @@ int despeckle_vals[4] = { 3, FILTER_ADAPTIVE, 7, 248 };
|
|||
* 'main()' - Main entry - just call gimp_main()...
|
||||
*/
|
||||
|
||||
int
|
||||
main(int argc, /* I - Number of command-line args */
|
||||
char *argv[]) /* I - Command-line args */
|
||||
{
|
||||
return (gimp_main(argc, argv));
|
||||
}
|
||||
|
||||
MAIN()
|
||||
|
||||
/*
|
||||
* 'query()' - Respond to a plug-in query...
|
||||
|
|
|
@ -124,13 +124,7 @@ int avg_width = 36;
|
|||
* 'main()' - Main entry - just call gimp_main()...
|
||||
*/
|
||||
|
||||
int
|
||||
main(int argc, /* I - Number of command-line args */
|
||||
char *argv[]) /* I - Command-line args */
|
||||
{
|
||||
return (gimp_main(argc, argv));
|
||||
}
|
||||
|
||||
MAIN()
|
||||
|
||||
/*
|
||||
* 'query()' - Respond to a plug-in query...
|
||||
|
|
|
@ -1291,8 +1291,6 @@ void set_default_settings(void)
|
|||
licvals.effect_image_id=0;
|
||||
}
|
||||
|
||||
MAIN()
|
||||
|
||||
static void query(void)
|
||||
{
|
||||
static GParamDef args[] =
|
||||
|
@ -1431,3 +1429,5 @@ void lic_noninteractive(GDrawable *drawable)
|
|||
printf("Noninteractive not yet implemented! Sorry.\n");
|
||||
}
|
||||
|
||||
MAIN()
|
||||
|
||||
|
|
|
@ -37,6 +37,9 @@
|
|||
* Revision History:
|
||||
*
|
||||
* $Log$
|
||||
* Revision 1.16 1999/04/23 06:33:13 asbjoer
|
||||
* use MAIN macro
|
||||
*
|
||||
* Revision 1.15 1999/04/19 00:17:49 mitch
|
||||
* 1999-04-19 Michael Natterer <mitschel@cs.tu-berlin.de>
|
||||
*
|
||||
|
@ -323,13 +326,7 @@ int runme = FALSE;
|
|||
* 'main()' - Main entry - just call gimp_main()...
|
||||
*/
|
||||
|
||||
int
|
||||
main(int argc, /* I - Number of command-line args */
|
||||
char *argv[]) /* I - Command-line args */
|
||||
{
|
||||
return (gimp_main(argc, argv));
|
||||
}
|
||||
|
||||
MAIN()
|
||||
|
||||
/*
|
||||
* 'query()' - Respond to a plug-in query...
|
||||
|
|
|
@ -34,6 +34,9 @@
|
|||
* Revision History:
|
||||
*
|
||||
* $Log$
|
||||
* Revision 1.12 1999/04/23 06:32:41 asbjoer
|
||||
* use MAIN macro
|
||||
*
|
||||
* Revision 1.11 1999/04/15 21:49:06 yosh
|
||||
* * applied gimp-lecorfec-99041[02]-0, changes follow
|
||||
*
|
||||
|
@ -217,13 +220,7 @@ int runme = FALSE;
|
|||
* 'main()' - Main entry - just call gimp_main()...
|
||||
*/
|
||||
|
||||
int
|
||||
main(int argc, /* I - Number of command-line args */
|
||||
char *argv[]) /* I - Command-line args */
|
||||
{
|
||||
return (gimp_main(argc, argv));
|
||||
}
|
||||
|
||||
MAIN()
|
||||
|
||||
/*
|
||||
* 'query()' - Respond to a plug-in query...
|
||||
|
|
Loading…
Reference in New Issue