Support JPEG option.
This commit is contained in:
parent
ddfb3ebdf6
commit
56a5afc7ea
|
@ -112,6 +112,9 @@ extern void initstdwin();
|
||||||
#ifdef USE_SOCKET
|
#ifdef USE_SOCKET
|
||||||
extern void initsocket();
|
extern void initsocket();
|
||||||
#endif
|
#endif
|
||||||
|
#ifdef USE_JPEG
|
||||||
|
extern void initjpeg();
|
||||||
|
#endif
|
||||||
|
|
||||||
struct {
|
struct {
|
||||||
char *name;
|
char *name;
|
||||||
|
@ -164,5 +167,9 @@ struct {
|
||||||
{"socket", initsocket},
|
{"socket", initsocket},
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#ifdef USE_JPEG
|
||||||
|
{"jpeg", initjpeg},
|
||||||
|
#endif
|
||||||
|
|
||||||
{0, 0} /* Sentinel */
|
{0, 0} /* Sentinel */
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in New Issue