2
0
mirror of https://github.com/boostorg/build.git synced 2026-02-13 00:12:11 +00:00

Fix failing compilation on non-MSVC compilers. Specifically CodeWarriorn.

The defenitions in tchar.h prevent the definition TCHAR; windows.h must always be included before any other windows headers.


[SVN r18285]
This commit is contained in:
Rene Rivera
2003-04-21 04:22:27 +00:00
parent 3f2dff0110
commit e9dc74c73b

View File

@@ -12,8 +12,8 @@
#include <limits.h>
#ifdef NT
#include <tchar.h>
#include <windows.h>
#include <tchar.h>
#ifndef INVALID_FILE_ATTRIBUTES
#define INVALID_FILE_ATTRIBUTES ((DWORD)-1)