Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 0291c9f

Browse files
committed
Issue 9445: Fix undefined symbols on VS8.0 build.
1 parent 78eef3d commit 0291c9f

1 file changed

Lines changed: 9 additions & 0 deletions

File tree

Modules/posixmodule.c

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -262,6 +262,15 @@ extern int lstat(const char *, struct stat *);
262262
#ifdef HAVE_PROCESS_H
263263
#include <process.h>
264264
#endif
265+
#ifndef VOLUME_NAME_DOS
266+
#define VOLUME_NAME_DOS 0x0
267+
#endif
268+
#ifndef VOLUME_NAME_NT
269+
#define VOLUME_NAME_NT 0x2
270+
#endif
271+
#ifndef IO_REPARSE_TAG_SYMLINK
272+
#define IO_REPARSE_TAG_SYMLINK (0xA000000CL)
273+
#endif
265274
#include "osdefs.h"
266275
#include <malloc.h>
267276
#include <windows.h>

0 commit comments

Comments
 (0)