1 /*-----------------------------------------------------------------------
\r
3 ; XCBITMAP - header file
\r
5 ; This module was written by Matthew MacKenzie
\r
9 ; ****** XLIB - Mode X graphics library ****************
\r
10 ; ****** ****************
\r
11 ; ****** Written By Themie Gouthas ****************
\r
13 ; egg@dstos3.dsto.gov.au
\r
14 ; teg@bart.dsto.gov.au
\r
16 ;----------------------------------------------------------------------*/
\r
18 #ifndef _XCBITMAP_H_
\r
19 #define _XCBITMAP_H_
\r
27 int x_compile_bitmap ( /* Compile a linear bitmap to generate */
\r
28 WORD logical_screen_width, /* machine code to plot it at any */
\r
29 char far * bitmap, /* required screen coordinates FAST. */
\r
32 int x_sizeof_cbitmap ( /* Find the size of the code which a */
\r
33 WORD logical_screen_width, /* bitmap would result in, if it */
\r
34 char far * bitmap); /* were compiled (used for allocation). */
\r
36 void x_put_cbitmap ( /* Displays a compiled bitmap generated */
\r
37 WORD XPos, /* by x_compile_bitmap. */
\r
40 char far * CompiledBitmap);
\r