home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 January / usenetsourcesnewsgroupsinfomagicjanuary1994.iso / sources / misc / volume36 / unpost / part07 / ident.h < prev    next >
Encoding:
C/C++ Source or Header  |  1993-04-18  |  560 b   |  27 lines

  1. /******************************************************************************
  2. * Module    :   Identify a binary file.
  3. *
  4. * Author    :   John W. M. Stevens
  5. ******************************************************************************/
  6.  
  7. #if ! defined(IDENT_HEADER_FILE)
  8.  
  9. #include    "unpost.h"
  10.  
  11. /*  Define binary file type enumerations.   */
  12. typedef enum
  13. {
  14.     UNKNOWN_TYPE,
  15.     GIF87A,
  16.     GIF89A,
  17.     JFIF_JPEG,
  18.     HSI1_JPEG
  19. } BIN_TYPES;
  20.  
  21. extern
  22. BIN_TYPES   IdUUFile(BYTE   *Bfr,
  23.                      int    Len,
  24.                      char   *Ext);
  25.  
  26. #endif
  27.