home *** CD-ROM | disk | FTP | other *** search
- /******************************************************************************
- * Module : Identify a binary file.
- *
- * Author : John W. M. Stevens
- ******************************************************************************/
-
- #if ! defined(IDENT_HEADER_FILE)
-
- #include "unpost.h"
-
- /* Define binary file type enumerations. */
- typedef enum
- {
- UNKNOWN_TYPE,
- GIF87A,
- GIF89A,
- JFIF_JPEG,
- HSI1_JPEG
- } BIN_TYPES;
-
- extern
- BIN_TYPES IdUUFile(BYTE *Bfr,
- int Len,
- char *Ext);
-
- #endif
-