home *** CD-ROM | disk | FTP | other *** search
/ World of Shareware - Software Farm 2 / wosw_2.zip / wosw_2 / CPROG / WBITMAP.ZIP / BMFILE.H < prev    next >
C/C++ Source or Header  |  1991-10-15  |  713b  |  35 lines

  1. /*
  2. **    $id: ssvcid bmfile.h 1.0 10/15/91  9:50 am$
  3. **        This file contains the function prototypes for the functions in
  4. **    bmfile.c.
  5. **
  6. **    (C) 1991    Lawrence C. Widing
  7. */
  8. #ifndef    __BMFILE_H__
  9. #define    __BMFILE_H__    1
  10.  
  11. #if    defined(CDECL)
  12.     #undef    CDECL
  13. #endif
  14.  
  15. #if    !defined(CDECL)
  16.     #if    defined(__cplusplus)
  17.         #define    CDECL    "C"
  18.     #else
  19.         #define    CDECL
  20.     #endif
  21. #endif
  22.  
  23. extern CDECL HANDLE ReadBitmapFile(const char *filename);
  24. extern CDECL int WriteBitmapFile(const char *filename, const HBITMAP hbm);
  25.  
  26. #endif    /* !defined(__BMFILE_H__) */
  27.  
  28. /*
  29. **    Modification History
  30. **    --------------------
  31. **    $lgb$
  32. ** 10/15/91     Larry Widing   Initial version for Win Tech Journal Article.
  33. **    $lge$
  34. */
  35.