Fix from Nisheeth

This commit is contained in:
James Clark 1999-04-25 03:18:11 +00:00
parent 616e521daf
commit 31facc7d20

View File

@ -22,10 +22,18 @@ Contributor(s):
#include <stddef.h>
#ifdef XML_UNICODE
#ifdef XML_UNICODE_WCHAR_T
typedef const wchar_t *KEY;
#else
#else /* not XML_UNICODE_WCHAR_T */
typedef const unsigned short *KEY;
#endif /* not XML_UNICODE_WCHAR_T */
#else /* not XML_UNICODE */
typedef const char *KEY;
#endif
#endif /* not XML_UNICODE */
typedef struct {
KEY name;