1 /* 2 * CDDL HEADER START 3 * 4 * The contents of this file are subject to the terms of the 5 * Common Development and Distribution License (the "License"). 6 * You may not use this file except in compliance with the License. 7 * 8 * You can obtain a copy of the license at src/OPENSOLARIS.LICENSE 9 * or http://www.opensolaris.org/os/licensing. 10 * See the License for the specific language governing permissions 11 * and limitations under the License. 12 * 13 * When distributing Covered Code, include this CDDL HEADER in each 14 * file and include the License file at src/OPENSOLARIS.LICENSE. 15 * If applicable, add the following below this CDDL HEADER, with the 16 * fields enclosed by brackets "[]" replaced with your own identifying 17 * information: Portions Copyright [yyyy] [name of copyright owner] 18 * 19 * CDDL HEADER END 20 */ 21 /* 22 * Copyright(c) 2001 Sun Microsystems, Inc. 23 * All rights reserved. 24 */ 25 26 #ifndef _ISCII_GMK_H_ 27 #define _ISCII_GMK_H_ 28 29 #include "iscii-common.h" 30 31 Entry Gurmukhi_isc[] ={ 32 {0xA2, 0x0A02, 1}, 33 {0xA4, 0x0A05, 6}, 34 {0xAC, 0x0A0F, 2}, 35 {0xB0, 0x0A13, 2}, 36 {0xB3, 0x0A15, 20}, 37 {0xC8, 0x0A2A, 6}, 38 {0xCF, 0x0A30, 1}, 39 {0xD1, 0x0A32, 1}, 40 {0xD4, 0x0A35, 2}, 41 {0xD7, 0x0A38, 2}, 42 {ISC_INV, UNI_INV, 1}, 43 {0xDA, 0x0A3E, 5}, 44 {0xE1, 0x0A47, 2}, 45 {0xE5, 0x0A4B, 2}, 46 {0xE8, 0x0A71, 1}, 47 {0xE9, 0x0A3C, 1}, 48 {0xF1, 0x0A66, 10} 49 }; 50 51 Entry Gurmukhi_uni[] = { 52 {0xA2, 0x0A02, 1}, 53 {0xA4, 0x0A05, 6}, 54 {0xAC, 0x0A0F, 2}, 55 {0xB0, 0x0A13, 2}, 56 {0xB3, 0x0A15, 20}, 57 {0xC8, 0x0A2A, 6}, 58 {0xCF, 0x0A30, 1}, 59 {0xD1, 0x0A32, 1}, 60 {0xD1, 0x0A33, NUKTA}, 61 {0xD4, 0x0A35, 2}, 62 {0xD7, 0x0A38, 2}, 63 {0xE9, 0x0A3C, 1}, 64 {0xDA, 0x0A3E, 5}, 65 {0xE1, 0x0A47, 2}, 66 {0xE5, 0x0A4B, 2}, 67 {0xB4, 0x0A59, NUKTA}, 68 {0xB5, 0x0A5A, NUKTA}, 69 {0xC9, 0x0A5E, NUKTA}, 70 {0xF1, 0x0A66, 10}, 71 {0xE8, 0x0A71, 1}, 72 {0xE8, UNI_ZWNJ,HALANT}, 73 {0xE9, UNI_ZWJ, HALANT}, 74 {ISC_INV, UNI_INV, 1} 75 }; 76 77 int Gurmukhi_nukta_type[] = { 78 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, /* A0 - A7 */ 79 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, /* A8 - AF */ 80 0x0, 0x0, 0x0, 0x0, 0x0A59, 0x0A5A, 0x0, 0x0, /* B0 - B7 */ 81 0x0, 0x0, 0x0A5B, 0x0, 0x0, 0x0, 0x0, 0x0, /* B8 - BF */ 82 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, /* C0 - C7 */ 83 0x0, 0x0A5E, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, /* C8 - CF */ 84 0x0, 0x0A33, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, /* D0 - D7 */ 85 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, /* D8 - DF */ 86 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, /* E0 - E7 */ 87 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, /* E8 - EF */ 88 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, /* F0 - E7 */ 89 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 /* F8 - FF */ 90 }; 91 #endif 92