VC++ project changes to add new Unicode files and modules.

(I did this under VC++ 5.0 -- hope this doesn't break anything.)
This commit is contained in:
Guido van Rossum 2000-03-11 00:13:14 +00:00
parent a831cac7a8
commit 76bd689a8d
2 changed files with 125 additions and 17 deletions

View file

@ -67,6 +67,8 @@ extern void initmsvcrt();
extern void initwinsound();
extern void init_locale();
#endif
extern void init_codecs();
extern void initunicodedata();
/* -- ADDMODULE MARKER 1 -- */
@ -113,6 +115,9 @@ struct _inittab _PyImport_Inittab[] = {
{"_locale", init_locale},
#endif
{"_codecs", init_codecs},
{"unicodedata", initunicodedata},
/* -- ADDMODULE MARKER 2 -- */
/* This module "lives in" with marshal.c */