Commit f301dcac authored by Jack Jansen's avatar Jack Jansen

Added img stuff (within #ifdef, so they're easy to remove)

parent c263286b
......@@ -289,6 +289,18 @@ extern void initRes();
extern void initSnd();
extern void initWin();
#define HAVE_IMG
#ifdef HAVE_IMG
extern void initimgcolormap();
extern void initimgformat();
extern void initimggif();
extern void initimgjpeg();
extern void initimgppm();
extern void initimgpgm();
extern void initimgtiff();
extern void initimgop();
#endif
/* -- ADDMODULE MARKER 1 -- */
extern void initmarshal();
......@@ -346,6 +358,17 @@ struct {
{"Win", initWin},
{"Res", initRes},
#ifdef HAVE_IMG
{"imgcolormap", initimgcolormap},
{"imgformat", initimgformat},
{"imggif", initimggif},
{"imgjpeg", initimgjpeg},
{"imgppm", initimgppm},
{"imgpgm", initimgpgm},
{"imgtiff", initimgtiff},
{"imgop", initimgop},
#endif
/* -- ADDMODULE MARKER 2 -- */
/* This module "lives in" with marshal.c */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment