mirror of
https://github.com/python/cpython.git
synced 2025-08-03 08:34:29 +00:00
Added support for CD module
This commit is contained in:
parent
86d2568e16
commit
178969df92
1 changed files with 7 additions and 0 deletions
|
@ -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…
Add table
Add a link
Reference in a new issue