File: data.h

package info (click to toggle)
fcitx5-unikey 5.1.7-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 916 kB
  • sloc: cpp: 10,885; makefile: 4; sh: 1
file content (18 lines) | stat: -rw-r--r-- 585 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/*
 * SPDX-FileCopyrightText: 1998-2002 Pham Kim Long <unikey@gmail.com>
 *
 * SPDX-License-Identifier: GPL-2.0-or-later
 */
#ifndef VIETNAMESE_CHARSET_DATA_H
#define VIETNAMESE_CHARSET_DATA_H

// This header defines some special characters
const StdVnChar StdStartQuote =
    (VnStdCharOffset + 201); // 0x93 in the Western charset
// 201 is the offset of character 0x93 (start quote) in Vn charsets
const StdVnChar StdEndQuote =
    (VnStdCharOffset + 202); // 0x94 in the Western charset
const StdVnChar StdEllipsis =
    (VnStdCharOffset + 190); // 0x85 in Western charet.

#endif