blob: db1609ad6b9cbd4e81c83287378b5f6a607c7386 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
namespace ICU {
[CCode (cprefix = "UCHAR_", cheader_filename = "unicode/uchar.h")]
public enum Property {
EMOJI,
EMOJI_PRESENTATION,
EMOJI_MODIFIER,
EMOJI_MODIFIER_BASE,
}
[CCode (cname = "u_hasBinaryProperty", cheader_filename = "unicode/uchar.h")]
public bool has_binary_property(unichar c, Property p);
}
|