Added support for CD module

This commit is contained in:
Guido van Rossum 1992-05-15 11:06:12 +00:00
parent 86d2568e16
commit 178969df92
1 changed files with 7 additions and 0 deletions

View File

@ -139,6 +139,9 @@ extern void initsocket();
#ifdef USE_JPEG
extern void initjpeg();
#endif
#ifdef USE_CD
extern void initcd();
#endif
struct {
char *name;
@ -195,5 +198,9 @@ struct {
{"jpeg", initjpeg},
#endif
#ifdef USE_CD
{"cd", initcd},
#endif
{0, 0} /* Sentinel */
};