home *** CD-ROM | disk | FTP | other *** search
/ The Fred Fish Collection 1.5 / ffcollection-1-5-1992-11.iso / ff_progs / scrnutil / smallpal.lha / SmallPalette.c < prev    next >
C/C++ Source or Header  |  1992-04-07  |  366b  |  21 lines

  1. /*  SmallPalette
  2.  *  by Stefan Zeiger of ! Wizard Works !
  3.  *  Nov-1991
  4.  *  Public Domain.
  5.  */
  6.  
  7. #include <intuition/intuitionbase.h>
  8. #include <proto/req.h>
  9. #include <proto/exec.h>
  10.  
  11. struct ReqLib *ReqBase;
  12.  
  13. void _main(void)
  14. {
  15.   if((ReqBase=(struct ReqLib *)OpenLibrary("req.library",0L)))
  16.   {
  17.     ColorRequester(0L);
  18.     CloseLibrary((struct Library *)ReqBase);
  19.   }
  20. }
  21.