home *** CD-ROM | disk | FTP | other *** search
/ The Fred Fish Collection 1.5 / ffcollection-1-5-1992-11.iso / ff_disks / 300-399 / ff374.lzh / PopArt / sorcery / main.c < prev    next >
C/C++ Source or Header  |  1990-10-08  |  2KB  |  57 lines

  1.  
  2.  
  3.     /*  main.c   ---   link'em and smile!  (all other code is elsewhere) */
  4.  
  5.  
  6.  /* under Manx
  7.     Aztec C68K 3.6a,
  8.     compile with:    Contents
  9.  
  10.         cc main  main
  11.         
  12.         cc init  gadget dec's, openstuff, init, grabchip, fake toggle gadgets
  13.         
  14.         cc input help, hot help, input, smallinput, color tweaker
  15.         
  16.         cc anim  animation includes, anim, popChip
  17.         
  18.         cc file  save, load, increment, save & load colors, decimal, hex
  19.  
  20.         cc stor  NewSuperWindow, dealwithit, newactive, deadwindow, stor,
  21.                      ZapAllWindows, offInput, onInput, clipboard stuff, roll
  22.  
  23.         cc art   art, doKeys, vanillaKey, maybedospotat,
  24.                      maybedospot, dospot, suck, blow, flash blok,
  25.                      dumb gadgets, new, pick, new title, fill
  26.  
  27.         cc getfile   This module is copyright (c) 1986 by C. Heath of
  28.                      Microsmiths, Inc.  It's the file requester everyone
  29.                      uses.  I have editted it slightly, and must distribute
  30.                      it in object-code format.  Lets all give C. Heath a big
  31.                      round of applause, gang!
  32.  
  33.     ln -o PopArt art main init input file getfile anim stor  c.lib
  34.  
  35.         cc anim -DPOPLITE
  36.         cc init -DPOPLITE
  37.  
  38.     ln -o PopArtLite blah blah blah  c.lib
  39.  
  40.     */
  41.  
  42.  
  43. int    gargc;
  44. char **gargv;
  45.  
  46. main (argc, argv)
  47.      char **argv;
  48. {
  49.         gargc = argc;
  50.         gargv = argv;
  51.  
  52.         init ();
  53.         while (input ())  art ();
  54.         quit ("bye!");
  55.  
  56. }   /*  I think tapeworms and planaria have about
  57.                                this many neurons in their brains...         */