mirror of
https://github.com/python/cpython.git
synced 2025-12-23 09:19:18 +00:00
Build the _sha3 module with VS 2008.
This commit is contained in:
parent
da201fa248
commit
ca4a52513b
2 changed files with 6 additions and 0 deletions
|
|
@ -1150,6 +1150,10 @@
|
|||
RelativePath="..\..\Modules\sha512module.c"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\Modules\_sha3\sha3module.c"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\Modules\signalmodule.c"
|
||||
>
|
||||
|
|
|
|||
|
|
@ -22,6 +22,7 @@ extern PyObject* PyInit_signal(void);
|
|||
extern PyObject* PyInit__sha1(void);
|
||||
extern PyObject* PyInit__sha256(void);
|
||||
extern PyObject* PyInit__sha512(void);
|
||||
extern PyObject* PyInit__sha3(void);
|
||||
extern PyObject* PyInit_time(void);
|
||||
extern PyObject* PyInit__thread(void);
|
||||
#ifdef WIN32
|
||||
|
|
@ -93,6 +94,7 @@ struct _inittab _PyImport_Inittab[] = {
|
|||
{"_sha1", PyInit__sha1},
|
||||
{"_sha256", PyInit__sha256},
|
||||
{"_sha512", PyInit__sha512},
|
||||
{"_sha3", PyInit__sha3},
|
||||
{"time", PyInit_time},
|
||||
#ifdef WITH_THREAD
|
||||
{"_thread", PyInit__thread},
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue