home *** CD-ROM | disk | FTP | other *** search
/ Collection of Hack-Phreak Scene Programs / cleanhpvac.zip / cleanhpvac / GVECTORS.ZIP / XCOMPPBM.H < prev    next >
C/C++ Source or Header  |  1993-09-13  |  594b  |  24 lines

  1. #ifndef _XCOMPPBM_H_
  2. #define _XCOMPPBM_H_
  3.  
  4. #ifdef __cplusplus
  5. extern "C" {
  6. #endif
  7.  
  8.  
  9.  int x_compile_pbm (           /* Compile a planar bitmap to generate  */
  10.     WORD logical_screen_width, /* machine code to plot it at any */
  11.     char far * bitmap,         /* required screen coordinates FAST. */
  12.     char far * output);
  13.  
  14.  int x_sizeof_cpbm (           /* Find the size of the code which a  */
  15.     WORD logical_screen_width, /* pbm would result in, if it  */
  16.     char far * bitmap);        /* were compiled (used for allocation). */
  17.  
  18.  
  19. #ifdef __cplusplus
  20. }
  21. #endif
  22.  
  23. #endif
  24.