2 * Copyright 2003 Vincent BĂ©ron
3 * Copyright 2007, 2008 Mikolaj Zalewski
5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Lesser General Public
7 * License as published by the Free Software Foundation; either
8 * version 2.1 of the License, or (at your option) any later version.
10 * This library is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * Lesser General Public License for more details.
15 * You should have received a copy of the GNU Lesser General Public
16 * License along with this library; if not, write to the Free Software
17 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
28 #define MASTER_LANGUAGE LANG_ENGLISH
29 #define MASTER_SUBLANGUAGE SUBLANG_ENGLISH_US
38 static language_t
get_language(resource_t
*resource
) {
39 switch(resource
->type
) {
41 return *resource
->res
.acc
->lvc
.language
;
43 return *resource
->res
.bmp
->data
->lvc
.language
;
45 return *resource
->res
.cur
->lvc
.language
;
47 return *resource
->res
.curg
->lvc
.language
;
49 return *resource
->res
.dlg
->lvc
.language
;
51 return *resource
->res
.fnt
->data
->lvc
.language
;
53 return *resource
->res
.fnd
->data
->lvc
.language
;
55 return *resource
->res
.ico
->lvc
.language
;
57 return *resource
->res
.icog
->lvc
.language
;
59 return *resource
->res
.men
->lvc
.language
;
61 return *resource
->res
.rdt
->data
->lvc
.language
;
63 return *resource
->res
.stt
->lvc
.language
;
65 return *resource
->res
.usr
->data
->lvc
.language
;
67 return *resource
->res
.msg
->data
->lvc
.language
;
69 return *resource
->res
.ver
->lvc
.language
;
71 return *resource
->res
.dlgi
->data
->lvc
.language
;
73 return *resource
->res
.tbt
->lvc
.language
;
76 return *resource
->res
.ani
->data
->lvc
.language
;
78 return *resource
->res
.html
->data
->lvc
.language
;
80 /* Not supposed to reach here */
81 fprintf(stderr
, "Not supposed to reach here (get_language_id())\n");
86 static int get_language_id(resource_t
*resource
) {
87 return get_language(resource
).id
;
90 static int compare_lang(language_t lang1
, language_t lang2
)
92 return memcmp(&lang1
, &lang2
, sizeof(language_t
));
97 #define PRETTYPRINTLANG(langid) \
98 if(LANG_##langid == lid) { \
102 static const char *get_language_name(int lid
) {
103 PRETTYPRINTLANG(NEUTRAL
)
104 PRETTYPRINTLANG(AFRIKAANS
)
105 PRETTYPRINTLANG(ALBANIAN
)
106 PRETTYPRINTLANG(ARABIC
)
107 PRETTYPRINTLANG(ARMENIAN
)
108 PRETTYPRINTLANG(ASSAMESE
)
109 PRETTYPRINTLANG(AZERI
)
110 PRETTYPRINTLANG(BASQUE
)
111 PRETTYPRINTLANG(BELARUSIAN
)
112 PRETTYPRINTLANG(BENGALI
)
113 PRETTYPRINTLANG(BULGARIAN
)
114 PRETTYPRINTLANG(CATALAN
)
115 PRETTYPRINTLANG(CHINESE
)
116 PRETTYPRINTLANG(CROATIAN
)
117 PRETTYPRINTLANG(CZECH
)
118 PRETTYPRINTLANG(DANISH
)
119 PRETTYPRINTLANG(DIVEHI
)
120 PRETTYPRINTLANG(DUTCH
)
121 PRETTYPRINTLANG(ENGLISH
)
122 PRETTYPRINTLANG(ESTONIAN
)
123 PRETTYPRINTLANG(FAEROESE
)
124 PRETTYPRINTLANG(FARSI
)
125 PRETTYPRINTLANG(FINNISH
)
126 PRETTYPRINTLANG(FRENCH
)
127 PRETTYPRINTLANG(GALICIAN
)
128 PRETTYPRINTLANG(GEORGIAN
)
129 PRETTYPRINTLANG(GERMAN
)
130 PRETTYPRINTLANG(GREEK
)
131 PRETTYPRINTLANG(GUJARATI
)
132 PRETTYPRINTLANG(HEBREW
)
133 PRETTYPRINTLANG(HINDI
)
134 PRETTYPRINTLANG(HUNGARIAN
)
135 PRETTYPRINTLANG(ICELANDIC
)
136 PRETTYPRINTLANG(INDONESIAN
)
137 PRETTYPRINTLANG(IRISH
)
138 PRETTYPRINTLANG(ITALIAN
)
139 PRETTYPRINTLANG(JAPANESE
)
140 PRETTYPRINTLANG(KANNADA
)
141 PRETTYPRINTLANG(KASHMIRI
)
142 PRETTYPRINTLANG(KAZAK
)
143 PRETTYPRINTLANG(KONKANI
)
144 PRETTYPRINTLANG(KOREAN
)
145 PRETTYPRINTLANG(KYRGYZ
)
146 PRETTYPRINTLANG(LATVIAN
)
147 PRETTYPRINTLANG(LITHUANIAN
)
148 PRETTYPRINTLANG(MACEDONIAN
)
149 PRETTYPRINTLANG(MALAY
)
150 PRETTYPRINTLANG(MALAYALAM
)
151 PRETTYPRINTLANG(MANIPURI
)
152 PRETTYPRINTLANG(MARATHI
)
153 PRETTYPRINTLANG(MONGOLIAN
)
154 PRETTYPRINTLANG(NEPALI
)
155 PRETTYPRINTLANG(NORWEGIAN
)
156 PRETTYPRINTLANG(ORIYA
)
157 PRETTYPRINTLANG(POLISH
)
158 PRETTYPRINTLANG(PORTUGUESE
)
159 PRETTYPRINTLANG(PUNJABI
)
160 PRETTYPRINTLANG(ROMANIAN
)
161 PRETTYPRINTLANG(RUSSIAN
)
162 PRETTYPRINTLANG(SANSKRIT
)
163 PRETTYPRINTLANG(SERBIAN
)
164 PRETTYPRINTLANG(SINDHI
)
165 PRETTYPRINTLANG(SLOVAK
)
166 PRETTYPRINTLANG(SLOVENIAN
)
167 PRETTYPRINTLANG(SPANISH
)
168 PRETTYPRINTLANG(SWAHILI
)
169 PRETTYPRINTLANG(SWEDISH
)
170 PRETTYPRINTLANG(SYRIAC
)
171 PRETTYPRINTLANG(TAMIL
)
172 PRETTYPRINTLANG(TATAR
)
173 PRETTYPRINTLANG(TELUGU
)
174 PRETTYPRINTLANG(THAI
)
175 PRETTYPRINTLANG(TURKISH
)
176 PRETTYPRINTLANG(UKRAINIAN
)
177 PRETTYPRINTLANG(URDU
)
178 PRETTYPRINTLANG(UZBEK
)
179 PRETTYPRINTLANG(VIETNAMESE
)
180 PRETTYPRINTLANG(SCOTTISH_GAELIC
)
181 PRETTYPRINTLANG(MALTESE
)
182 PRETTYPRINTLANG(MAORI
)
183 PRETTYPRINTLANG(RHAETO_ROMANCE
)
184 PRETTYPRINTLANG(SAAMI
)
185 PRETTYPRINTLANG(SORBIAN
)
186 PRETTYPRINTLANG(SUTU
)
187 PRETTYPRINTLANG(TSONGA
)
188 PRETTYPRINTLANG(TSWANA
)
189 PRETTYPRINTLANG(VENDA
)
190 PRETTYPRINTLANG(XHOSA
)
191 PRETTYPRINTLANG(ZULU
)
192 PRETTYPRINTLANG(ESPERANTO
)
193 PRETTYPRINTLANG(WALON
)
194 PRETTYPRINTLANG(CORNISH
)
195 PRETTYPRINTLANG(WELSH
)
196 PRETTYPRINTLANG(BRETON
)
197 return "Unknown language";
201 static int compare_accelerator(accelerator_t
*accelerator1
, accelerator_t
*accelerator2
) {
203 event_t
*ev1
= NULL
, *ev2
= NULL
;
204 if(((accelerator1
->memopt
!= accelerator2
->memopt
) ||
205 (accelerator1
->lvc
.version
!= accelerator2
->lvc
.version
) ||
206 (accelerator1
->lvc
.characts
!= accelerator2
->lvc
.characts
)))
208 ev1
= accelerator1
->events
;
209 ev2
= accelerator2
->events
;
210 while(!different
&& ev1
&& ev2
) {
212 ((ev1
->id
!= ev2
->id
) ||
213 (ev1
->flags
!= ev2
->flags
)))
219 ((ev1
&& !ev2
) || (!ev1
&& ev2
)))
224 static int compare_bitmap(bitmap_t
*bitmap1
, bitmap_t
*bitmap2
) {
226 if(((bitmap1
->memopt
!= bitmap2
->memopt
) ||
227 (bitmap1
->data
->lvc
.version
!= bitmap2
->data
->lvc
.version
) ||
228 (bitmap1
->data
->lvc
.characts
!= bitmap2
->data
->lvc
.characts
)))
233 static int compare_cursor(cursor_t
*cursor1
, cursor_t
*cursor2
) {
235 if(((cursor1
->id
!= cursor2
->id
) ||
236 (cursor1
->width
!= cursor2
->width
) ||
237 (cursor1
->height
!= cursor2
->height
) ||
238 (cursor1
->xhot
!= cursor2
->xhot
) ||
239 (cursor1
->yhot
!= cursor2
->yhot
)))
242 ((cursor1
->lvc
.version
!= cursor2
->lvc
.version
) ||
243 (cursor1
->lvc
.characts
!= cursor2
->lvc
.characts
)))
248 static int compare_cursor_group(cursor_group_t
*cursor_group1
, cursor_group_t
*cursor_group2
) {
250 cursor_t
*cursor1
= NULL
, *cursor2
= NULL
;
251 if(((cursor_group1
->memopt
!= cursor_group2
->memopt
) ||
252 (cursor_group1
->lvc
.version
!= cursor_group2
->lvc
.version
) ||
253 (cursor_group1
->lvc
.characts
!= cursor_group2
->lvc
.characts
)))
256 (cursor_group1
->ncursor
!= cursor_group2
->ncursor
))
259 cursor1
= cursor_group1
->cursorlist
;
260 cursor2
= cursor_group2
->cursorlist
;
261 while(!different
&& cursor1
&& cursor2
) {
262 different
= compare_cursor(cursor1
, cursor2
);
263 cursor1
= cursor1
->next
;
264 cursor2
= cursor2
->next
;
267 ((cursor1
&& !cursor2
) ||
268 (!cursor1
&& cursor2
)))
274 static int compare_control(control_t
*control1
, control_t
*control2
) {
278 if(((control1
&& !control2
) || (!control1
&& control2
)))
280 if(different
|| !control1
|| !control2
)
282 nameid
= strdup(get_nameid_str(control1
->ctlclass
));
283 if(strcmp(nameid
, get_nameid_str(control2
->ctlclass
)))
289 /* allow the translators to set some styles */
291 if (control1
->ctlclass
->type
== name_ord
&& control1
->ctlclass
->name
.i_name
== CT_BUTTON
)
292 ignore_style
= 0x2000; /* BS_MULTILINE*/
294 if((control1
->id
!= control2
->id
))
296 if(!different
&& control1
->gotstyle
&& control2
->gotstyle
) {
297 if((!control1
->style
|| !control2
->style
) ||
298 (control1
->style
->and_mask
|| control2
->style
->and_mask
) ||
299 ((control1
->style
->or_mask
& ~ignore_style
) != (control2
->style
->or_mask
& ~ignore_style
)))
301 } else if(!different
&&
302 ((control1
->gotstyle
&& !control2
->gotstyle
) ||
303 (!control1
->gotstyle
&& control2
->gotstyle
)))
305 if(!different
&& control1
->gotexstyle
&& control2
->gotexstyle
) {
306 if((!control1
->exstyle
|| !control2
->exstyle
) ||
307 (control1
->exstyle
->and_mask
|| control2
->exstyle
->and_mask
) ||
308 (control1
->exstyle
->or_mask
!= control2
->exstyle
->or_mask
))
310 } else if(!different
&&
311 ((control1
->gotexstyle
&& !control2
->gotexstyle
) ||
312 (!control1
->gotexstyle
&& control2
->gotexstyle
)))
314 if(!different
&& control1
->gothelpid
&& control2
->gothelpid
) {
315 if(control1
->helpid
!= control2
->helpid
)
317 } else if(!different
&&
318 ((control1
->gothelpid
&& !control2
->gothelpid
) ||
319 (!control1
->gothelpid
&& control2
->gothelpid
)))
324 static int compare_dialog(dialog_t
*dialog1
, dialog_t
*dialog2
) {
327 control_t
*ctrl1
, *ctrl2
;
328 if(((dialog1
->memopt
!= dialog2
->memopt
) ||
329 (dialog1
->lvc
.version
!= dialog2
->lvc
.version
) ||
330 (dialog1
->lvc
.characts
!= dialog2
->lvc
.characts
)))
332 if(!different
&& dialog1
->gotstyle
&& dialog2
->gotstyle
) {
333 if((!dialog1
->style
|| !dialog2
->style
) ||
334 (dialog1
->style
->and_mask
|| dialog2
->style
->and_mask
) ||
335 (dialog1
->style
->or_mask
!= dialog2
->style
->or_mask
))
337 } else if(!different
&&
338 ((dialog1
->gotstyle
&& !dialog2
->gotstyle
) ||
339 (!dialog1
->gotstyle
&& dialog2
->gotstyle
)))
341 if(!different
&& dialog1
->gotexstyle
&& dialog2
->gotexstyle
) {
342 if((!dialog1
->exstyle
|| !dialog2
->exstyle
) ||
343 (dialog1
->exstyle
->and_mask
|| dialog2
->exstyle
->and_mask
) ||
344 (dialog1
->exstyle
->or_mask
!= dialog2
->exstyle
->or_mask
))
346 } else if(!different
&&
347 ((dialog1
->gotexstyle
&& !dialog2
->gotexstyle
) ||
348 (!dialog1
->gotexstyle
&& dialog2
->gotexstyle
)))
350 if(!different
&& dialog1
->gothelpid
&& dialog2
->gothelpid
) {
351 if(dialog1
->helpid
!= dialog2
->helpid
)
353 } else if(!different
&&
354 ((dialog1
->gothelpid
&& !dialog2
->gothelpid
) ||
355 (!dialog1
->gothelpid
&& dialog2
->gothelpid
)))
357 nameid
= strdup(get_nameid_str(dialog1
->menu
));
358 if(!different
&& strcmp(nameid
, get_nameid_str(dialog2
->menu
)))
361 nameid
= strdup(get_nameid_str(dialog1
->dlgclass
));
362 if(!different
&& strcmp(nameid
, get_nameid_str(dialog2
->dlgclass
)))
366 ctrl1
= dialog1
->controls
;
367 ctrl2
= dialog2
->controls
;
368 while(!different
&& (ctrl1
|| ctrl2
))
370 different
= compare_control(ctrl1
, ctrl2
);
371 if (ctrl1
) ctrl1
= ctrl1
->next
;
372 if (ctrl2
) ctrl2
= ctrl2
->next
;
377 static int compare_font(font_t
*font1
, font_t
*font2
) {
379 if(((font1
->memopt
!= font2
->memopt
) ||
380 (font1
->data
->lvc
.version
!= font2
->data
->lvc
.version
) ||
381 (font1
->data
->lvc
.characts
!= font2
->data
->lvc
.characts
)))
386 static int compare_fontdir(fontdir_t
*fontdir1
, fontdir_t
*fontdir2
) {
388 if(((fontdir1
->memopt
!= fontdir2
->memopt
) ||
389 (fontdir1
->data
->lvc
.version
!= fontdir2
->data
->lvc
.version
) ||
390 (fontdir1
->data
->lvc
.characts
!= fontdir2
->data
->lvc
.characts
)))
395 static int compare_icon(icon_t
*icon1
, icon_t
*icon2
) {
397 if(((icon1
->id
!= icon2
->id
) ||
398 (icon1
->width
!= icon2
->width
) ||
399 (icon1
->height
!= icon2
->height
)))
402 ((icon1
->lvc
.version
!= icon2
->lvc
.version
) ||
403 (icon1
->lvc
.characts
!= icon2
->lvc
.characts
)))
408 static int compare_icon_group(icon_group_t
*icon_group1
, icon_group_t
*icon_group2
) {
410 icon_t
*icon1
= NULL
, *icon2
= NULL
;
411 if(((icon_group1
->memopt
!= icon_group2
->memopt
) ||
412 (icon_group1
->lvc
.version
!= icon_group2
->lvc
.version
) ||
413 (icon_group1
->lvc
.characts
!= icon_group2
->lvc
.characts
)))
416 (icon_group1
->nicon
!= icon_group2
->nicon
))
419 icon1
= icon_group1
->iconlist
;
420 icon2
= icon_group2
->iconlist
;
421 while(!different
&& icon1
&& icon2
) {
422 different
= compare_icon(icon1
, icon2
);
427 ((icon1
&& !icon2
) ||
434 static int compare_menu_item(menu_item_t
*menu_item1
, menu_item_t
*menu_item2
) {
436 while(!different
&& menu_item1
&& menu_item2
) {
437 if(menu_item1
->popup
&& menu_item2
->popup
) {
438 if(!different
&& menu_item1
->gotid
&& menu_item2
->gotid
) {
439 if(menu_item1
->id
!= menu_item2
->id
)
441 } else if(!different
&&
442 ((menu_item1
->gotid
&& !menu_item2
->gotid
) ||
443 (!menu_item1
->gotid
&& menu_item2
->gotid
)))
445 if(!different
&& menu_item1
->gottype
&& menu_item2
->gottype
) {
446 if(menu_item1
->type
!= menu_item2
->type
)
448 } else if(!different
&&
449 ((menu_item1
->gottype
&& !menu_item2
->gottype
) ||
450 (!menu_item1
->gottype
&& menu_item2
->gottype
)))
452 if(!different
&& menu_item1
->gotstate
&& menu_item2
->gotstate
) {
453 if(menu_item1
->state
!= menu_item2
->state
)
455 } else if(!different
&&
456 ((menu_item1
->gotstate
&& !menu_item2
->gotstate
) ||
457 (!menu_item1
->gotstate
&& menu_item2
->gotstate
)))
459 if(!different
&& menu_item1
->gothelpid
&& menu_item2
->gothelpid
) {
460 if(menu_item1
->helpid
!= menu_item2
->helpid
)
462 } else if(!different
&&
463 ((menu_item1
->gothelpid
&& !menu_item2
->gothelpid
) ||
464 (!menu_item1
->gothelpid
&& menu_item2
->gothelpid
)))
467 different
= compare_menu_item(menu_item1
->popup
, menu_item2
->popup
);
468 } else if(!menu_item1
->popup
&& !menu_item2
->popup
) {
469 if(menu_item1
->name
&& menu_item2
->name
) {
470 if(!different
&& menu_item1
->gotid
&& menu_item2
->gotid
) {
471 if(menu_item1
->id
!= menu_item2
->id
)
473 } else if(!different
&&
474 ((menu_item1
->gotid
&& !menu_item2
->gotid
) ||
475 (!menu_item1
->gotid
&& menu_item2
->gotid
)))
477 if(!different
&& menu_item1
->gottype
&& menu_item2
->gottype
) {
478 if(menu_item1
->type
!= menu_item2
->type
)
480 } else if(!different
&&
481 ((menu_item1
->gottype
&& !menu_item2
->gottype
) ||
482 (!menu_item1
->gottype
&& menu_item2
->gottype
)))
484 if(!different
&& menu_item1
->gotstate
&& menu_item2
->gotstate
) {
485 if(menu_item1
->state
!= menu_item2
->state
)
487 } else if(!different
&&
488 ((menu_item1
->gotstate
&& !menu_item2
->gotstate
) ||
489 (!menu_item1
->gotstate
&& menu_item2
->gotstate
)))
491 if(!different
&& menu_item1
->gothelpid
&& menu_item2
->gothelpid
) {
492 if(menu_item1
->helpid
!= menu_item2
->helpid
)
494 } else if(!different
&&
495 ((menu_item1
->gothelpid
&& !menu_item2
->gothelpid
) ||
496 (!menu_item1
->gothelpid
&& menu_item2
->gothelpid
)))
498 } else if((menu_item1
->name
&& !menu_item2
->name
) ||
499 (!menu_item1
->name
&& menu_item2
->name
))
503 menu_item1
= menu_item1
->next
;
504 menu_item2
= menu_item2
->next
;
507 ((menu_item1
&& !menu_item2
) ||
508 (!menu_item1
&& menu_item2
)))
513 static int compare_menu(menu_t
*menu1
, menu_t
*menu2
) {
515 if(((menu1
->memopt
!= menu2
->memopt
) ||
516 (menu1
->lvc
.version
!= menu2
->lvc
.version
) ||
517 (menu1
->lvc
.characts
!= menu2
->lvc
.characts
)))
520 different
= compare_menu_item(menu1
->items
, menu2
->items
);
524 static int compare_rcdata(rcdata_t
*rcdata1
, rcdata_t
*rcdata2
) {
526 if(((rcdata1
->memopt
!= rcdata2
->memopt
) ||
527 (rcdata1
->data
->lvc
.version
!= rcdata2
->data
->lvc
.version
) ||
528 (rcdata1
->data
->lvc
.characts
!= rcdata2
->data
->lvc
.characts
)))
533 static int compare_html(html_t
*rcdata1
, html_t
*rcdata2
) {
535 if(((rcdata1
->memopt
!= rcdata2
->memopt
) ||
536 (rcdata1
->data
->lvc
.version
!= rcdata2
->data
->lvc
.version
) ||
537 (rcdata1
->data
->lvc
.characts
!= rcdata2
->data
->lvc
.characts
)))
542 static int compare_stringtable(stringtable_t
*stringtable1
, stringtable_t
*stringtable2
) {
545 while(!different
&& stringtable1
&& stringtable2
) {
546 if((stringtable1
->memopt
!= stringtable2
->memopt
) ||
547 (stringtable1
->lvc
.version
!= stringtable2
->lvc
.version
) ||
548 (stringtable1
->lvc
.characts
!= stringtable2
->lvc
.characts
))
551 if((stringtable1
->nentries
!= stringtable2
->nentries
) ||
552 (stringtable1
->idbase
!= stringtable2
->idbase
))
555 for(i
= 0 ; i
< stringtable1
->nentries
; i
++)
556 if((stringtable1
->entries
[i
].id
!= stringtable2
->entries
[i
].id
) ||
557 (stringtable1
->entries
[i
].memopt
!= stringtable2
->entries
[i
].memopt
) ||
558 (stringtable1
->entries
[i
].str
&& !stringtable2
->entries
[i
].str
) ||
559 (!stringtable1
->entries
[i
].str
&& stringtable2
->entries
[i
].str
)) {
564 stringtable1
= stringtable1
->next
;
565 stringtable2
= stringtable2
->next
;
570 static int compare_user(user_t
*user1
, user_t
*user2
) {
573 if(((user1
->memopt
!= user2
->memopt
) ||
574 (user1
->data
->lvc
.version
!= user2
->data
->lvc
.version
) ||
575 (user1
->data
->lvc
.characts
!= user2
->data
->lvc
.characts
)))
577 nameid
= strdup(get_nameid_str(user1
->type
));
578 if(!different
&& strcmp(nameid
, get_nameid_str(user2
->type
)))
584 static int compare_messagetable(messagetable_t
*messagetable1
, messagetable_t
*messagetable2
) {
586 if(((messagetable1
->memopt
!= messagetable2
->memopt
) ||
587 (messagetable1
->data
->lvc
.version
!= messagetable2
->data
->lvc
.version
) ||
588 (messagetable1
->data
->lvc
.characts
!= messagetable2
->data
->lvc
.characts
)))
593 static int compare_string(string_t
*string1
, string_t
*string2
) {
595 if(((string1
->size
!= string2
->size
) ||
596 (string1
->type
!= string2
->type
)))
599 if(string1
->type
== str_char
)
600 different
= memcmp(string1
->str
.cstr
, string2
->str
.cstr
, string1
->size
);
601 else if(string1
->type
== str_unicode
)
602 different
= memcmp(string1
->str
.wstr
, string2
->str
.wstr
, string1
->size
*sizeof(WCHAR
));
609 static int compare_ver_block(ver_block_t
*ver_block1
, ver_block_t
*ver_block2
);
611 static int compare_ver_value(ver_value_t
*ver_value1
, ver_value_t
*ver_value2
) {
614 if((ver_value1
->type
== ver_value2
->type
)) {
615 switch(ver_value1
->type
) {
617 if(!different
&& ver_value1
->key
&& ver_value2
->key
)
618 different
= compare_string(ver_value1
->key
, ver_value2
->key
);
619 else if(!different
&&
620 ((ver_value1
->key
&& !ver_value2
->key
) ||
621 (!ver_value1
->key
&& ver_value2
->key
)))
625 if(!different
&& ver_value1
->key
&& ver_value2
->key
)
626 different
= compare_string(ver_value1
->key
, ver_value2
->key
);
627 else if(!different
&&
628 ((ver_value1
->key
&& !ver_value2
->key
) ||
629 (!ver_value1
->key
&& ver_value2
->key
)))
631 if(!different
&& ver_value1
->value
.words
&& ver_value2
->value
.words
) {
632 if(ver_value1
->value
.words
->nwords
!= ver_value2
->value
.words
->nwords
)
635 for(i
= 0; i
< ver_value1
->value
.words
->nwords
; i
++) {
636 if(ver_value1
->value
.words
->words
[i
] != ver_value2
->value
.words
->words
[i
]) {
641 } else if(!different
&&
642 ((ver_value1
->value
.words
&& !ver_value2
->value
.words
) ||
643 (!ver_value1
->value
.words
&& ver_value2
->value
.words
)))
647 if(!different
&& ver_value1
->value
.block
&& ver_value2
->value
.block
)
648 different
= compare_ver_block(ver_value1
->value
.block
, ver_value2
->value
.block
);
649 else if(!different
&&
650 ((ver_value1
->value
.block
&& !ver_value2
->value
.block
) ||
651 (!ver_value1
->value
.block
&& ver_value2
->value
.block
)))
662 static int compare_ver_block(ver_block_t
*ver_block1
, ver_block_t
*ver_block2
) {
664 ver_value_t
*ver_value1
= ver_block1
->values
, *ver_value2
= ver_block2
->values
;
666 while(!different
&& ver_value1
&& ver_value2
) {
667 different
= compare_ver_value(ver_value1
, ver_value2
);
668 ver_value1
= ver_value1
->next
;
669 ver_value2
= ver_value2
->next
;
672 ((ver_value1
&& !ver_value2
) ||
673 (!ver_value1
&& ver_value2
)))
679 static int compare_versioninfo(versioninfo_t
*versioninfo1
, versioninfo_t
*versioninfo2
) {
681 ver_block_t
*ver_block1
= NULL
, *ver_block2
= NULL
;
682 if(((versioninfo1
->memopt
!= versioninfo2
->memopt
) ||
683 (versioninfo1
->lvc
.version
!= versioninfo2
->lvc
.version
) ||
684 (versioninfo1
->lvc
.characts
!= versioninfo2
->lvc
.characts
)))
686 if(!different
&& versioninfo1
->gotit
.fv
&& versioninfo2
->gotit
.fv
) {
687 if((versioninfo1
->filever_maj1
!= versioninfo2
->filever_maj1
) ||
688 (versioninfo1
->filever_maj2
!= versioninfo2
->filever_maj2
) ||
689 (versioninfo1
->filever_min1
!= versioninfo2
->filever_min1
) ||
690 (versioninfo1
->filever_min2
!= versioninfo2
->filever_min2
))
692 } else if(!different
&&
693 ((versioninfo1
->gotit
.fv
&& !versioninfo2
->gotit
.fv
) ||
694 (!versioninfo1
->gotit
.fv
&& versioninfo2
->gotit
.fv
)))
696 if(!different
&& versioninfo1
->gotit
.pv
&& versioninfo2
->gotit
.pv
) {
697 if((versioninfo1
->prodver_maj1
!= versioninfo2
->prodver_maj1
) ||
698 (versioninfo1
->prodver_maj2
!= versioninfo2
->prodver_maj2
) ||
699 (versioninfo1
->prodver_min1
!= versioninfo2
->prodver_min1
) ||
700 (versioninfo1
->prodver_min2
!= versioninfo2
->prodver_min2
))
702 } else if(!different
&&
703 ((versioninfo1
->gotit
.pv
&& !versioninfo2
->gotit
.pv
) ||
704 (!versioninfo1
->gotit
.pv
&& versioninfo2
->gotit
.pv
)))
706 if(!different
&& versioninfo1
->gotit
.fo
&& versioninfo2
->gotit
.fo
) {
707 if(versioninfo1
->fileos
!= versioninfo2
->fileos
)
709 } else if(!different
&&
710 ((versioninfo1
->gotit
.fo
&& !versioninfo2
->gotit
.fo
) ||
711 (!versioninfo1
->gotit
.fo
&& versioninfo2
->gotit
.fo
)))
713 if(!different
&& versioninfo1
->gotit
.ff
&& versioninfo2
->gotit
.ff
) {
714 if(versioninfo1
->fileflags
!= versioninfo2
->fileflags
)
716 } else if(!different
&&
717 ((versioninfo1
->gotit
.ff
&& !versioninfo2
->gotit
.ff
) ||
718 (!versioninfo1
->gotit
.ff
&& versioninfo2
->gotit
.ff
)))
720 if(!different
&& versioninfo1
->gotit
.ffm
&& versioninfo2
->gotit
.ffm
) {
721 if(versioninfo1
->fileflagsmask
!= versioninfo2
->fileflagsmask
)
723 } else if(!different
&&
724 ((versioninfo1
->gotit
.ffm
&& !versioninfo2
->gotit
.ffm
) ||
725 (!versioninfo1
->gotit
.ffm
&& versioninfo2
->gotit
.ffm
)))
727 if(!different
&& versioninfo1
->gotit
.ft
&& versioninfo2
->gotit
.ft
) {
728 if(versioninfo1
->filetype
!= versioninfo2
->filetype
)
730 } else if(!different
&&
731 ((versioninfo1
->gotit
.ft
&& !versioninfo2
->gotit
.ft
) ||
732 (!versioninfo1
->gotit
.ft
&& versioninfo2
->gotit
.ft
)))
734 if(!different
&& versioninfo1
->gotit
.fst
&& versioninfo2
->gotit
.fst
) {
735 if(versioninfo1
->filesubtype
!= versioninfo2
->filesubtype
)
737 } else if(!different
&&
738 ((versioninfo1
->gotit
.fst
&& !versioninfo2
->gotit
.fst
) ||
739 (!versioninfo1
->gotit
.fst
&& versioninfo2
->gotit
.fst
)))
742 ver_block1
= versioninfo1
->blocks
;
743 ver_block2
= versioninfo2
->blocks
;
744 while(!different
&& ver_block1
&& ver_block2
) {
745 different
= compare_ver_block(ver_block1
, ver_block2
);
746 ver_block1
= ver_block1
->next
;
747 ver_block2
= ver_block2
->next
;
750 ((ver_block1
&& !ver_block2
) ||
751 (!ver_block1
&& ver_block2
)))
757 static int compare_dlginit(dlginit_t
*dlginit1
, dlginit_t
*dlginit2
) {
759 if(((dlginit1
->memopt
!= dlginit2
->memopt
) ||
760 (dlginit1
->data
->lvc
.version
!= dlginit2
->data
->lvc
.version
) ||
761 (dlginit1
->data
->lvc
.characts
!= dlginit2
->data
->lvc
.characts
)))
766 static int compare_toolbar_item(toolbar_item_t
*toolbar_item1
, toolbar_item_t
*toolbar_item2
) {
768 while(!different
&& toolbar_item1
&& toolbar_item2
) {
769 if((toolbar_item1
->id
&& !toolbar_item2
->id
) ||
770 (!toolbar_item1
->id
&& toolbar_item2
->id
))
772 toolbar_item1
= toolbar_item1
->next
;
773 toolbar_item2
= toolbar_item2
->next
;
776 ((toolbar_item1
&& !toolbar_item2
) ||
777 (!toolbar_item1
&& toolbar_item2
)))
782 static int compare_toolbar(toolbar_t
*toolbar1
, toolbar_t
*toolbar2
) {
784 if(((toolbar1
->memopt
!= toolbar2
->memopt
) ||
785 (toolbar1
->lvc
.version
!= toolbar2
->lvc
.version
) ||
786 (toolbar1
->lvc
.characts
!= toolbar2
->lvc
.characts
)))
789 different
= compare_toolbar_item(toolbar1
->items
, toolbar2
->items
);
793 static int compare_ani_curico(ani_curico_t
*ani_curico1
, ani_curico_t
*ani_curico2
) {
795 if(((ani_curico1
->memopt
!= ani_curico2
->memopt
) ||
796 (ani_curico1
->data
->lvc
.version
!= ani_curico2
->data
->lvc
.version
) ||
797 (ani_curico1
->data
->lvc
.characts
!= ani_curico2
->data
->lvc
.characts
)))
802 static int compare(resource_t
*resource1
, resource_t
*resource2
) {
803 switch(resource1
->type
) {
805 return compare_accelerator(resource1
->res
.acc
, resource2
->res
.acc
);
807 return compare_bitmap(resource1
->res
.bmp
, resource2
->res
.bmp
);
809 return compare_cursor(resource1
->res
.cur
, resource2
->res
.cur
);
811 return compare_cursor_group(resource1
->res
.curg
, resource2
->res
.curg
);
813 return compare_dialog(resource1
->res
.dlg
, resource2
->res
.dlg
);
815 return compare_font(resource1
->res
.fnt
, resource2
->res
.fnt
);
817 return compare_fontdir(resource1
->res
.fnd
, resource2
->res
.fnd
);
819 return compare_icon(resource1
->res
.ico
, resource2
->res
.ico
);
821 return compare_icon_group(resource1
->res
.icog
, resource2
->res
.icog
);
823 return compare_menu(resource1
->res
.men
, resource2
->res
.men
);
825 return compare_rcdata(resource1
->res
.rdt
, resource2
->res
.rdt
);
827 return compare_stringtable(resource1
->res
.stt
, resource2
->res
.stt
);
829 return compare_user(resource1
->res
.usr
, resource2
->res
.usr
);
831 return compare_html(resource1
->res
.html
, resource2
->res
.html
);
833 return compare_messagetable(resource1
->res
.msg
, resource2
->res
.msg
);
835 return compare_versioninfo(resource1
->res
.ver
, resource2
->res
.ver
);
837 return compare_dlginit(resource1
->res
.dlgi
, resource2
->res
.dlgi
);
839 return compare_toolbar(resource1
->res
.tbt
, resource2
->res
.tbt
);
842 return compare_ani_curico(resource1
->res
.ani
, resource2
->res
.ani
);
844 /* Not supposed to reach here */
845 fprintf(stderr
, "Not supposed to reach here (compare())\n");
851 typedef struct resource_lang_node
855 struct resource_lang_node
*next
;
856 } resource_lang_node_t
;
858 typedef struct resource_id_node
861 resource_lang_node_t
*langs
;
862 struct resource_id_node
*next
;
863 } resource_id_node_t
;
868 struct resource_id_node
*ids
;
869 } verify_tab
[res_usr
+1];
871 static void add_resource(resource_t
*res
)
873 resource_id_node_t
*idnode
;
874 resource_lang_node_t
*langnode
;
875 if (!verify_tab
[res
->type
].enabled
)
877 fprintf(stderr
, "ERR: Report this: unknown resource type parsed %08x\n", res
->type
);
881 for (idnode
= verify_tab
[res
->type
].ids
; idnode
; idnode
= idnode
->next
)
882 if (compare_name_id(idnode
->id
, res
->name
) == 0)
887 idnode
= xmalloc(sizeof(resource_id_node_t
));
888 idnode
->id
= res
->name
;
889 idnode
->langs
= NULL
;
890 idnode
->next
= verify_tab
[res
->type
].ids
;
891 verify_tab
[res
->type
].ids
= idnode
;
894 for (langnode
= idnode
->langs
; langnode
; langnode
= langnode
->next
)
895 if (compare_lang(langnode
->lang
, get_language(res
)) == 0)
897 fprintf(stderr
, "ERR: resource %s [type %x] language %03x:%02x duplicated!\n",
898 get_nameid_str(res
->name
), res
->type
, langnode
->lang
.id
, langnode
->lang
.sub
);
902 langnode
= xmalloc(sizeof(resource_lang_node_t
));
904 langnode
->lang
= get_language(res
);
905 langnode
->next
= idnode
->langs
;
906 idnode
->langs
= langnode
;
909 static void setup_tabs(void)
913 for (i
= 0; i
<= res_usr
; i
++)
935 verify_tab
[i
].enabled
= 1;
940 static const char *get_typename_for_int(int type
) {
943 return get_typename(&res
);
946 static resource_t
*find_main(int type
, name_id_t
*id
, resource_lang_node_t
*langnode
)
948 resource_t
*neutral
= NULL
, *en
= NULL
, *en_US
= NULL
;
949 for (; langnode
; langnode
= langnode
->next
)
951 if (langnode
->lang
.id
== LANG_NEUTRAL
&& langnode
->lang
.sub
== SUBLANG_NEUTRAL
)
952 neutral
= langnode
->res
;
953 if (langnode
->lang
.id
== MASTER_LANGUAGE
&& langnode
->lang
.sub
== SUBLANG_NEUTRAL
)
955 if (langnode
->lang
.id
== MASTER_LANGUAGE
&& langnode
->lang
.sub
== MASTER_SUBLANGUAGE
)
956 en_US
= langnode
->res
;
959 if (neutral
!= NULL
&& (en
!= NULL
|| en_US
!= NULL
))
961 fprintf(stderr
, "INFO: Resource %04x/%s has both NEUTRAL and MASTER language translation\n",
962 type
, get_nameid_str(id
));
965 if (en_US
!= NULL
) return en_US
;
966 if (en
!= NULL
) return en
;
970 void verify_translations(resource_t
*top
) {
971 resource_t
*curr
= top
;
972 resource_id_node_t
*idnode
;
973 resource_lang_node_t
*langnode
;
983 for (type
= 0; type
<= res_usr
; type
++)
985 printf("TYPE NEXT [%s]\n", get_typename_for_int(type
));
986 for (idnode
= verify_tab
[type
].ids
; idnode
; idnode
= idnode
->next
)
989 printf("RESOURCE [%s]\n", get_nameid_str(idnode
->id
));
991 mainres
= find_main(type
, idnode
->id
, idnode
->langs
);
994 fprintf(stderr
, "ERR: resource %04x/%s has translation(s) but not available in NEUTRAL or MASTER language\n",
995 type
, get_nameid_str(idnode
->id
));
996 for (langnode
= idnode
->langs
; langnode
; langnode
= langnode
->next
)
997 printf("EXTRA %03x:%02x\n", langnode
->lang
.id
, langnode
->lang
.sub
);
1001 if (get_language_id(mainres
) == LANG_NEUTRAL
&& idnode
->langs
->next
== NULL
) {
1002 printf("NOTRANSL\n");
1006 for (langnode
= idnode
->langs
; langnode
; langnode
= langnode
->next
)
1008 printf("EXIST %03x:%02x\n", langnode
->lang
.id
, langnode
->lang
.sub
);
1009 if (compare(langnode
->res
, mainres
))
1011 printf("DIFF %03x:%02x\n", langnode
->lang
.id
, langnode
->lang
.sub
);