* Remove everything related to direct access to unicode.properties file. All of it should be done through ICU.
git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@38017 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
@@ -1,23 +0,0 @@
|
||||
/*
|
||||
* Copyright 2003, Axel Dörfler, [email protected]. All rights reserved.
|
||||
* Distributed under the terms of the MIT License.
|
||||
*/
|
||||
#ifndef PROPERTY_FILE_H
|
||||
#define PROPERTY_FILE_H
|
||||
|
||||
|
||||
#include <File.h>
|
||||
|
||||
|
||||
// This is the read-only version of the PropertyFile class - the
|
||||
// genprops tool contains the write-only version of it
|
||||
|
||||
|
||||
class PropertyFile : public BFile {
|
||||
public:
|
||||
status_t SetTo(const char *directory, const char *name);
|
||||
|
||||
off_t Size();
|
||||
};
|
||||
|
||||
#endif /* PROPERTY_FILE_H */
|
||||
@@ -1,25 +0,0 @@
|
||||
/*
|
||||
* Copyright 2003, Axel Dörfler, [email protected]. All rights reserved.
|
||||
* Distributed under the terms of the MIT License.
|
||||
*/
|
||||
#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_ */
|
||||
Reference in New Issue
Block a user