mirror of https://github.com/python/cpython.git
Added support for CD module
This commit is contained in:
parent
86d2568e16
commit
178969df92
|
@ -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 */
|
||||
};
|
||||
|
|
Loading…
Reference in New Issue