diff options
| author | Steven Fuller <relnev@icculus.org> | 2001-07-01 00:55:22 +0000 |
|---|---|---|
| committer | Patryk Obara <dreamer.tan@gmail.com> | 2019-08-20 02:09:04 +0200 |
| commit | 2186d5f3f95cd74a070a490d899291648d58667a (patch) | |
| tree | 55241a1afa3e1a22e0b6593a8dead0b703800f44 /src/win95/chnkimag.hpp | |
| parent | 218ca90543758a20ac326e444ca0643174ca7384 (diff) | |
Initial revision
Diffstat (limited to 'src/win95/chnkimag.hpp')
| -rw-r--r-- | src/win95/chnkimag.hpp | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/src/win95/chnkimag.hpp b/src/win95/chnkimag.hpp new file mode 100644 index 0000000..df0dc62 --- /dev/null +++ b/src/win95/chnkimag.hpp @@ -0,0 +1,33 @@ +#ifndef _included__chnkimag_hpp_ +#define _included__chnkimag_hpp_ + +#error "This file is obsolete" + +#include <stdio.h> + +#include "d3_image.hpp" +#include "mishchnk.hpp" +#include "bmpnames.hpp" + +extern "C" extern char projectsubdirectory[]; + +extern char const * GameTex_Directory; +extern char const * GenTex_Directory; +extern char const * FixTex_Directory; +extern char const * ToolsTex_Directory; + +struct CL_RIFFImage : public CL_Image +{ +public: + static char const * game_mode; // game mode defines palette and set of graphics - can be null or "" for default + + CL_RIFFImage() : CL_Image() {} + CL_RIFFImage(CL_Image const & base) : CL_Image(base) {} + +private: + virtual CL_Error Locate(char const * iname, int const enum_id); + + void GetPath(ImageDescriptor const & idsc, Environment_Data_Chunk * envd, BMPN_Flags bflags); +}; + +#endif // !_included__chnkimag_hpp_ |
