summaryrefslogtreecommitdiff
path: root/src/win95/chnkimag.hpp
diff options
context:
space:
mode:
authorSteven Fuller <relnev@icculus.org>2008-05-04 02:51:54 -0700
committerPatryk Obara <dreamer.tan@gmail.com>2019-08-20 02:22:37 +0200
commit76403986b15eb10e3045397ccb4262b87419c86c (patch)
treef4effc045a39bf1bef37e5dddad0c20111ab1b3c /src/win95/chnkimag.hpp
parenta64e1008385dd2eef5f44f9adb135f7644da92fd (diff)
Removed unused image and font code.
Diffstat (limited to 'src/win95/chnkimag.hpp')
-rw-r--r--src/win95/chnkimag.hpp33
1 files changed, 0 insertions, 33 deletions
diff --git a/src/win95/chnkimag.hpp b/src/win95/chnkimag.hpp
deleted file mode 100644
index df0dc62..0000000
--- a/src/win95/chnkimag.hpp
+++ /dev/null
@@ -1,33 +0,0 @@
-#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_