comparison src/xs_config.h @ 161:02bbce56d6b0

Renamed some struct variables.
author Matti Hamalainen <ccr@tnsp.org>
date Sun, 06 Jun 2004 03:15:04 +0000
parents 4162a5370b9e
children 676ec1a1ab93
comparison
equal deleted inserted replaced
160:450fea61cad5 161:02bbce56d6b0
129 WTYPE_TEXT 129 WTYPE_TEXT
130 }; 130 };
131 131
132 132
133 typedef struct { 133 typedef struct {
134 gint valType; /* Type of item (ATYPE_*) */ 134 gint itemType; /* Type of item (CTYPE_*) */
135 void *valData; /* Pointer to variable */ 135 void *itemData; /* Pointer to variable */
136 gchar *valName; /* Name of configuration item */ 136 gchar *itemName; /* Name of configuration item */
137 } t_xs_cfg_item; 137 } t_xs_cfg_item;
138 138
139 139
140 typedef struct { 140 typedef struct {
141 gint widType; 141 gint widType;
142 gint valType; 142 gint itemType;
143 gchar *widName; 143 gchar *widName;
144 void *valData; 144 void *itemData;
145 gint valSet; 145 gint itemSet;
146 } t_xs_wid_item; 146 } t_xs_wid_item;
147 147
148 148
149 /* 149 /*
150 * Functions 150 * Functions