home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Club Amiga de Montreal - CAM
/
CAM_CD_1.iso
/
files
/
508.lha
/
IR_RemoteCntrl_AREXX_゚eta
/
BackGround.c
next >
Wrap
C/C++ Source or Header
|
1991-05-06
|
827b
|
26 lines
/*----------------------- B a c k G r o u n d . c ----------------------*/
/* This routine draws the raised background for the user interface in */
/* IRMaster.c. It was put into a seperate module so that the Image */
/* data could be seperated from the rest of the gadget, text, etc. */
/* structures in order to be able to fit everything into the available */
/* RAM space when compiling. */
/*----------------------------------------------------------------------*/
#include "irc.h"
#include "IRMasterImage.h"
extern struct RastPort *WRPort;
int BackGround()
{
/*--- Draw raised background. */
DrawImage(WRPort, &Image53, (short)0, (short)0);
/*--- Draw border for help messages. */
DrawBorder(WRPort, &Border4, (short)0, (short)0);
return(0);
}