mirror of
https://github.com/mamedev/mame.git
synced 2024-11-18 10:06:19 +01:00
20 lines
253 B
C
20 lines
253 B
C
|
#ifndef INTCONFIG_H
|
||
|
#define INTCONFIG_H
|
||
|
|
||
|
#include <stdlib.h>
|
||
|
#include <string.h>
|
||
|
|
||
|
#define XML_NS 1
|
||
|
#define XML_DTD 1
|
||
|
#define XML_CONTEXT_BYTES 1024
|
||
|
|
||
|
#ifdef USE_LSB
|
||
|
#define BYTEORDER 1234
|
||
|
#else
|
||
|
#define BYTEORDER 4321
|
||
|
#endif
|
||
|
|
||
|
#define HAVE_MEMMOVE
|
||
|
|
||
|
#endif
|