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 >
Wrap
C/C++ Source or Header
|
1992-04-07
|
366b
|
21 lines
/* SmallPalette
* by Stefan Zeiger of ! Wizard Works !
* Nov-1991
* Public Domain.
*/
#include <intuition/intuitionbase.h>
#include <proto/req.h>
#include <proto/exec.h>
struct ReqLib *ReqBase;
void _main(void)
{
if((ReqBase=(struct ReqLib *)OpenLibrary("req.library",0L)))
{
ColorRequester(0L);
CloseLibrary((struct Library *)ReqBase);
}
}