NT dlls have .pyd extension instead of .dll

This commit is contained in:
Guido van Rossum 1995-01-07 12:36:02 +00:00
parent e7d444f785
commit 5fb1da76ff
1 changed files with 2 additions and 2 deletions

View File

@ -67,8 +67,8 @@ typedef void (*dl_funcptr)();
#include <windows.h>
typedef FARPROC dl_funcptr;
#define _DL_FUNCPTR_DEFINED
#define SHORT_EXT ".dll"
#define LONG_EXT "module.dll"
#define SHORT_EXT ".pyd"
#define LONG_EXT "module.pyd"
#endif
#if defined(NeXT) || defined(WITH_RLD)