home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Dream 48
/
Amiga_Dream_48.iso
/
Atari
/
c
/
wrc_1_0.lzh
/
WRC.1_0
/
WRC.H
< prev
next >
Wrap
Text File
|
1992-10-04
|
1KB
|
29 lines
/* WRC.H */
/*** Beschreibung von Bildschirmbereichen ***/
typedef struct _wrectS {
struct _wrectS *next; /* Verkettung */
GRECT r; /* Bildschirmrechteck */
int scroll; /* TRUE: Bereich kann durch Scrollen erzeugt werden */
} wrectS;
typedef wrectS *wlistT;
void wrc_init( void);
void wrc_exit( void);
wrectS *wrc_alloc( void);
void wrc_free( wrectS *pwr);
wrectS *wrc_extract( wrectS *pwrprev);
wrectS *wrc_insert( wrectS *pwrprev, wrectS *pwr);
wrectS *wrc_add( wrectS *pwrprev, GRECT *rect);
void wrc_delete( wrectS *pwrprev);
wrectS *wrc_split( wrectS *pwrprev, GRECT *rcut, int del);
wrectS *wrc_lnew( wlistT *wl);
void wrc_lfree( wlistT *wl);
int wrc_ldup( wlistT *wldest, wlistT *wlsour, GRECT *rclip);
void wrc_lmove( wlistT wl, int offsx, int offsy);
void wrc_lmerge( wlistT *wl);
void wrc_lsort( wlistT *wl, int scrollx, int scrolly);
int wrc_lwin( wlistT *wl, int win, GRECT *rect);
int wrc_lscroll( wlistT *wlvis, int scrollx, int scrolly);