Kaydet (Commit) 859b16c8 authored tarafından Guido van Rossum's avatar Guido van Rossum

In debug mode on MS Windows, DLLs are called foo_d.pyd or foo_d.dll.

üst 3d9a0585
......@@ -106,9 +106,14 @@ typedef int (* APIENTRY dl_funcptr)();
#include <windows.h>
typedef FARPROC dl_funcptr;
#define _DL_FUNCPTR_DEFINED
#ifdef _DEBUG
#define SHORT_EXT "_d.pyd"
#define LONG_EXT "_d.dll"
#else
#define SHORT_EXT ".pyd"
#define LONG_EXT ".dll"
#endif
#endif
#ifdef NeXT
#define DYNAMIC_LINK
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment