impTGA.h 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. //**************************************************************************
  2. //
  3. // Filename : impTGA.h
  4. //
  5. // Purpose : .tga file importer function prototypes
  6. //
  7. // Modification history :
  8. //
  9. // 20nov96:HJH - Creation
  10. //
  11. //**************************************************************************
  12. #ifndef _impTGA_h
  13. #define _impTGA_h
  14. //**************************************************************************
  15. //
  16. // Includes
  17. //
  18. //**************************************************************************
  19. #include "types.h"
  20. #include "himage.h"
  21. //**************************************************************************
  22. //
  23. // Defines
  24. //
  25. //**************************************************************************
  26. //**************************************************************************
  27. //
  28. // Typedefs
  29. //
  30. //**************************************************************************
  31. //**************************************************************************
  32. //
  33. // Function Prototypes
  34. //
  35. //**************************************************************************
  36. #ifdef __cplusplus
  37. extern "C" {
  38. #endif
  39. BOOLEAN LoadTGAFileToImage( HIMAGE hImage, UINT16 fContents );
  40. #ifdef __cplusplus
  41. }
  42. #endif
  43. #endif