~ubuntu-branches/ubuntu/hardy/uim/hardy

« back to all changes in this revision

Viewing changes to helper/dict-word.h

  • Committer: Bazaar Package Importer
  • Author(s): Steinar H. Gunderson
  • Date: 2006-07-06 22:17:24 UTC
  • mfrom: (1.1.4 upstream)
  • Revision ID: james.westby@ubuntu.com-20060706221724-6sobw1fcsxj647hp
Tags: 1:1.1.0-1.2
* Non-maintainer upload.
* Added -Wno-cast-align to CFLAGS, as per the RM's recommendations:

  < vorlon> Sesse: -Wno-cast-align and to hell with it :P

  Really fixes FTBFS. (Really Closes: #375081)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/*
2
2
 *  $Id:$
3
3
 *  Copyright (c) 2003,2004 Masahito Omote <omote@utyuuzin.net>
4
 
 *                2005 uim Project http://uim.freedesktop.org/
 
4
 *                2005-2006 uim Project http://uim.freedesktop.org/
5
5
 *
6
6
 *  All rights reserved.
7
7
 *
52
52
    WORD_TYPE_PRIME
53
53
} uim_word_type;
54
54
 
55
 
/* 
 
55
/*
56
56
 *  - �ϥå���ơ��֥뤫�����ǥǡ������������charset��phon��desc�ʳ���
57
57
 *    ���ƤΥ��С��򱣤����ۤ����ɤ����⤷��ʤ���
58
58
 *    ���ƤΥǡ����ϴؿ���ͳ�ǥ�������
74
74
 
75
75
    char       *phon;               /* �ɤ� */
76
76
    char       *desc;               /* ���� */
77
 
    char       *cclass_code;        /* �ʻ쥳���� or �ʻ� */
78
 
                                    /* FIXME! �ʻ쥳���ɤ��ʻ��ʬ�����ۤ����ɤ�? */
79
 
                                    /* ���ߤ�(�����ɤǤϤʤ�)�ʻ�̾(����)����Ǽ����Ƥ��� */
 
77
    char       *cclass_code;        /* �ʻ� ���ߤ�(�����ɤǤϤʤ�)�ʻ�̾(����)
 
78
                                       ����Ǽ����Ƥ��� */
 
79
    char       *cclass_native;      /* native cclass code (like #T01). */
80
80
    int         freq;               /* ���� */
81
81
 
82
82
    /* SKK specific fields */       /* FIXME! �����Τ��Ѿ���ʬΥ */
92
92
void      word_append    (uim_word **head, uim_word_type type,
93
93
                          char *charset,
94
94
                          char *phon, char *desc,
95
 
                          char *cclass_code, int freq,
 
95
                          const char *cclass_code,
 
96
                          const char *cclass_native,
 
97
                          int freq,
96
98
                          int okuri, char *annotation);
97
99
void      word_free_list (uim_word *head);
98
100
uim_word *word_last      (uim_word *list);