diff Wnn/include/jdata.h @ 27:6bfa7ea3b75b

- resolved conflict between pointer and int - more warning suppression
author Yoshiki Yazawa <yaz@honeyplanet.jp>
date Sat, 06 Mar 2010 18:29:27 +0900
parents b605a0e60f5b
children
line wrap: on
line diff
--- a/Wnn/include/jdata.h	Sat Mar 06 07:58:49 2010 +0900
+++ b/Wnn/include/jdata.h	Sat Mar 06 18:29:27 2010 +0900
@@ -36,8 +36,8 @@
 #ifndef JS
 struct jdata
 {
-  int kanji1;
-  short kanji2;                 /* */
+  int kanji1;                   /* index */
+  short kanji2;                 /* index */
   short which;                  /* gyaku henkan? */
   int serial;                   /* index is a serial number of the first 
                                    entry which is stored in this entry */
@@ -138,17 +138,17 @@
 
 struct uind1
 {
-  int pter1;                    /* pointer to uind1 */
-  int pter;                     /* pinter to uind2 */
+  int pter1;                    /* pointer to uind1 (index?) */
+  int pter;                     /* pinter to uind2 (index?) */
   unsigned int yomi1;
   unsigned int yomi2;
 };
 
 struct uind2
 {
-  int next;                     /* pointer to uind2 */
+  int next;                     /* pointer to uind2 (index?) */
   int serial;
-  int kanjipter;
+  int kanjipter;                /* index maybe */
   w_char kosuu;
   w_char yomi[1];               /* actually it is variable length */
 };