1 /*-----------------------------------------------------------------------
\r
3 ; XCBITM32 - 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
17 /* Notice that there is no function in this module to plot a
\r
18 compiled bitmap. Use x_put_cbitmap in module XCBITMAP. */
\r
20 /* This module is only for 386+ class computers. */
\r
22 #ifndef _XCBITM32_H_
\r
23 #define _XCBITM32_H_
\r
25 extern int x_compile_bitmap_32 ( /* Compile a linear bitmap to generate */
\r
26 WORD logical_screen_width, /* machine code to plot it at any */
\r
27 char far * bitmap, /* required screen coordinates FAST. */
\r
30 extern int x_sizeof_cbitmap_32 ( /* Find the size of the code which a */
\r
31 WORD logical_screen_width, /* bitmap would result in, if it */
\r
32 char far * bitmap); /* were compiled (used for allocation). */
\r