home *** CD-ROM | disk | FTP | other *** search
- /*
- ** $id: ssvcid bmfile.h 1.0 10/15/91 9:50 am$
- ** This file contains the function prototypes for the functions in
- ** bmfile.c.
- **
- ** (C) 1991 Lawrence C. Widing
- */
- #ifndef __BMFILE_H__
- #define __BMFILE_H__ 1
-
- #if defined(CDECL)
- #undef CDECL
- #endif
-
- #if !defined(CDECL)
- #if defined(__cplusplus)
- #define CDECL "C"
- #else
- #define CDECL
- #endif
- #endif
-
- extern CDECL HANDLE ReadBitmapFile(const char *filename);
- extern CDECL int WriteBitmapFile(const char *filename, const HBITMAP hbm);
-
- #endif /* !defined(__BMFILE_H__) */
-
- /*
- ** Modification History
- ** --------------------
- ** $lgb$
- ** 10/15/91 Larry Widing Initial version for Win Tech Journal Article.
- ** $lge$
- */
-