[Python-checkins] r83456 - python/branches/py3k/Modules/posixmodule.c

raymond.hettinger python-checkins at python.org
Sun Aug 1 23:10:36 CEST 2010


Author: raymond.hettinger
Date: Sun Aug  1 23:10:35 2010
New Revision: 83456

Log:
Issue 9445: Fix undefined symbols on VS8.0 build.

Modified:
   python/branches/py3k/Modules/posixmodule.c

Modified: python/branches/py3k/Modules/posixmodule.c
==============================================================================
--- python/branches/py3k/Modules/posixmodule.c	(original)
+++ python/branches/py3k/Modules/posixmodule.c	Sun Aug  1 23:10:35 2010
@@ -262,6 +262,15 @@
 #ifdef HAVE_PROCESS_H
 #include <process.h>
 #endif
+#ifndef VOLUME_NAME_DOS
+#define VOLUME_NAME_DOS	0x0
+#endif
+#ifndef VOLUME_NAME_NT
+#define VOLUME_NAME_NT	0x2
+#endif
+#ifndef IO_REPARSE_TAG_SYMLINK
+#define IO_REPARSE_TAG_SYMLINK	(0xA000000CL)
+#endif
 #include "osdefs.h"
 #include <malloc.h>
 #include <windows.h>


More information about the Python-checkins mailing list