2010-04-13 01:02:09 +04:00
|
|
|
/*
|
|
|
|
* Copyright 2003, Axel Dörfler, axeld@pinc-software.de. All rights reserved.
|
2010-04-13 13:48:02 +04:00
|
|
|
* Distributed under the terms of the MIT License.
|
2010-04-13 01:02:09 +04:00
|
|
|
*/
|
2009-05-01 23:23:59 +04:00
|
|
|
#ifndef _UNICODE_PROPERTIES_H_
|
|
|
|
#define _UNICODE_PROPERTIES_H_
|
|
|
|
|
|
|
|
|
|
|
|
#include <SupportDefs.h>
|
|
|
|
#include <ByteOrder.h>
|
|
|
|
|
|
|
|
|
|
|
|
#define PROPERTIES_DIRECTORY "locale"
|
|
|
|
#define PROPERTIES_FILE_NAME "unicode.properties"
|
|
|
|
#define PROPERTIES_FORMAT 'UPro'
|
|
|
|
|
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
uint8 size;
|
|
|
|
uint8 isBigEndian;
|
|
|
|
uint32 format;
|
|
|
|
uint8 version[3];
|
|
|
|
} UnicodePropertiesHeader;
|
|
|
|
|
|
|
|
#endif /* _UNICODE_PROPERTIES_H_ */
|