blob: 77b1ece8ca1e3cc7ad352c3223603872eb6e9e08 [file] [log] [blame]
Martin v. Löwis1dbb1ca2002-02-11 23:13:04 +00001/*================================================================
2** Copyright 2000, Clark Cooper
3** All rights reserved.
4**
5** This is free software. You are permitted to copy, distribute, or modify
6** it under the terms of the MIT/X license (contained in the COPYING file
7** with this distribution.)
8**
9**
10*/
11
12#ifndef WINCONFIG_H
13#define WINCONFIG_H
14
15#define WIN32_LEAN_AND_MEAN
16#include <windows.h>
17#undef WIN32_LEAN_AND_MEAN
18
19#include <memory.h>
20#include <string.h>
21
22#define XML_NS 1
23#define XML_DTD 1
24#define XML_BYTE_ORDER 12
25#define XML_CONTEXT_BYTES 1024
26
27#endif /* ndef WINCONFIG_H */