home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Collection of Hack-Phreak Scene Programs
/
cleanhpvac.zip
/
cleanhpvac
/
VECTBAL2.ZIP
/
XFILL.H
< prev
next >
Wrap
C/C++ Source or Header
|
1993-10-03
|
1KB
|
52 lines
/*-----------------------------------------------------------------------
;
; XFILL - header file
;
;
;
; ****** XLIB - Mode X graphics library ****************
; ****** ****************
; ****** Written By Themie Gouthas ****************
;
; egg@dstos3.dsto.gov.au
; teg@bart.dsto.gov.au
;
; Terminology & notes:
; VRAM == Video RAM
; SRAM == System RAM
; X coordinates are in pixels unless explicitly stated
;
;----------------------------------------------------------------------*/
#ifndef _XFILL_H_
#define _XFILL_H_
/* FUNCTIONS =========================================================== */
#ifdef __cplusplus
extern "C" {
#endif
int x_flood_fill(int x,
int y,
unsigned ofs,
int color
);
int x_boundary_fill(int x,
int y,
unsigned ofs,
int boundary,
int color
);
#ifdef __cplusplus
}
#endif
#endif