mirror of
https://github.com/mamedev/mame.git
synced 2024-11-16 07:48:32 +01:00
19 lines
253 B
C
19 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
|