home *** CD-ROM | disk | FTP | other *** search
/ Programming Tool Box / SIMS_2.iso / vb_tools / manythng / gif.h < prev    next >
C/C++ Source or Header  |  1994-07-28  |  481b  |  30 lines

  1. /*
  2. **    $id: ssvcid gif.h 1.0 08/03/92 10:01 am$
  3. **        Header for GIF file loading functions.
  4. **
  5. **    (C) 1991-3 Larry Widing
  6. */
  7. #ifndef    __GIF_H__
  8. #define    __GIF_H__    1
  9.  
  10. #if    defined(__cplusplus)
  11. extern "C" {
  12. #endif
  13.  
  14. extern HDIB ReadGifFile(const char FAR *filename);
  15.  
  16. #if    defined(__cplusplus)
  17. }
  18. #endif
  19.  
  20. #endif    /* !defined(__GIF_H__) */
  21. /*
  22. **    Modification History
  23. **    ====================
  24. **
  25. **    $lgb$
  26. ** 08/03/92     Larry Widing   Initial Version.
  27. **    $lge$
  28. */
  29.  
  30.