mirror of
https://github.com/holub/mame
synced 2025-05-11 16:48:52 +03: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
|