home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
DP Tool Club 21
/
CD_ASCQ_21_040595.iso
/
dos
/
prg
/
c
/
xlib612
/
source
/
xcomppbm.h
< prev
next >
Wrap
C/C++ Source or Header
|
1993-09-12
|
594b
|
24 lines
#ifndef _XCOMPPBM_H_
#define _XCOMPPBM_H_
#ifdef __cplusplus
extern "C" {
#endif
int x_compile_pbm ( /* Compile a planar bitmap to generate */
WORD logical_screen_width, /* machine code to plot it at any */
char far * bitmap, /* required screen coordinates FAST. */
char far * output);
int x_sizeof_cpbm ( /* Find the size of the code which a */
WORD logical_screen_width, /* pbm would result in, if it */
char far * bitmap); /* were compiled (used for allocation). */
#ifdef __cplusplus
}
#endif
#endif