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
;
205 ((accelerator1
->memopt
!= accelerator2
->memopt
) ||
206 (accelerator1
->lvc
.version
!= accelerator2
->lvc
.version
) ||
207 (accelerator1
->lvc
.characts
!= accelerator2
->lvc
.characts
)))
209 ev1
= accelerator1
->events
;
210 ev2
= accelerator2
->events
;
211 while(!different
&& ev1
&& ev2
) {
213 ((ev1
->id
!= ev2
->id
) ||
214 (ev1
->flags
!= ev2
->flags
)))
220 ((ev1
&& !ev2
) || (!ev1
&& ev2
)))
225 static int compare_bitmap(bitmap_t
*bitmap1
, bitmap_t
*bitmap2
) {
228 ((bitmap1
->memopt
!= bitmap2
->memopt
) ||
229 (bitmap1
->data
->lvc
.version
!= bitmap2
->data
->lvc
.version
) ||
230 (bitmap1
->data
->lvc
.characts
!= bitmap2
->data
->lvc
.characts
)))
235 static int compare_cursor(cursor_t
*cursor1
, cursor_t
*cursor2
) {
238 ((cursor1
->id
!= cursor2
->id
) ||
239 (cursor1
->width
!= cursor2
->width
) ||
240 (cursor1
->height
!= cursor2
->height
) ||
241 (cursor1
->xhot
!= cursor2
->xhot
) ||
242 (cursor1
->yhot
!= cursor2
->yhot
)))
245 ((cursor1
->lvc
.version
!= cursor2
->lvc
.version
) ||
246 (cursor1
->lvc
.characts
!= cursor2
->lvc
.characts
)))
251 static int compare_cursor_group(cursor_group_t
*cursor_group1
, cursor_group_t
*cursor_group2
) {
253 cursor_t
*cursor1
= NULL
, *cursor2
= NULL
;
255 ((cursor_group1
->memopt
!= cursor_group2
->memopt
) ||
256 (cursor_group1
->lvc
.version
!= cursor_group2
->lvc
.version
) ||
257 (cursor_group1
->lvc
.characts
!= cursor_group2
->lvc
.characts
)))
260 (cursor_group1
->ncursor
!= cursor_group2
->ncursor
))
263 cursor1
= cursor_group1
->cursorlist
;
264 cursor2
= cursor_group2
->cursorlist
;
265 while(!different
&& cursor1
&& cursor2
) {
266 different
= compare_cursor(cursor1
, cursor2
);
267 cursor1
= cursor1
->next
;
268 cursor2
= cursor2
->next
;
271 ((cursor1
&& !cursor2
) ||
272 (!cursor1
&& cursor2
)))
278 static int compare_control(control_t
*control1
, control_t
*control2
) {
283 ((control1
&& !control2
) ||
284 (!control1
&& control2
)))
286 if(different
|| !control1
|| !control2
)
288 nameid
= strdup(get_nameid_str(control1
->ctlclass
));
289 if(!different
&& strcmp(nameid
, get_nameid_str(control2
->ctlclass
)))
295 /* allow the translators to set some styles */
297 if (control1
->ctlclass
->type
== name_ord
&& control1
->ctlclass
->name
.i_name
== CT_BUTTON
)
298 ignore_style
= 0x2000; /* BS_MULTILINE*/
301 (control1
->id
!= control2
->id
))
303 if(!different
&& control1
->gotstyle
&& control2
->gotstyle
) {
304 if((!control1
->style
|| !control2
->style
) ||
305 (control1
->style
->and_mask
|| control2
->style
->and_mask
) ||
306 ((control1
->style
->or_mask
& ~ignore_style
) != (control2
->style
->or_mask
& ~ignore_style
)))
308 } else if(!different
&&
309 ((control1
->gotstyle
&& !control2
->gotstyle
) ||
310 (!control1
->gotstyle
&& control2
->gotstyle
)))
312 if(!different
&& control1
->gotexstyle
&& control2
->gotexstyle
) {
313 if((!control1
->exstyle
|| !control2
->exstyle
) ||
314 (control1
->exstyle
->and_mask
|| control2
->exstyle
->and_mask
) ||
315 (control1
->exstyle
->or_mask
!= control2
->exstyle
->or_mask
))
317 } else if(!different
&&
318 ((control1
->gotexstyle
&& !control2
->gotexstyle
) ||
319 (!control1
->gotexstyle
&& control2
->gotexstyle
)))
321 if(!different
&& control1
->gothelpid
&& control2
->gothelpid
) {
322 if(control1
->helpid
!= control2
->helpid
)
324 } else if(!different
&&
325 ((control1
->gothelpid
&& !control2
->gothelpid
) ||
326 (!control1
->gothelpid
&& control2
->gothelpid
)))
331 static int compare_dialog(dialog_t
*dialog1
, dialog_t
*dialog2
) {
334 control_t
*ctrl1
, *ctrl2
;
336 ((dialog1
->memopt
!= dialog2
->memopt
) ||
337 (dialog1
->lvc
.version
!= dialog2
->lvc
.version
) ||
338 (dialog1
->lvc
.characts
!= dialog2
->lvc
.characts
)))
340 if(!different
&& dialog1
->gotstyle
&& dialog2
->gotstyle
) {
341 if((!dialog1
->style
|| !dialog2
->style
) ||
342 (dialog1
->style
->and_mask
|| dialog2
->style
->and_mask
) ||
343 (dialog1
->style
->or_mask
!= dialog2
->style
->or_mask
))
345 } else if(!different
&&
346 ((dialog1
->gotstyle
&& !dialog2
->gotstyle
) ||
347 (!dialog1
->gotstyle
&& dialog2
->gotstyle
)))
349 if(!different
&& dialog1
->gotexstyle
&& dialog2
->gotexstyle
) {
350 if((!dialog1
->exstyle
|| !dialog2
->exstyle
) ||
351 (dialog1
->exstyle
->and_mask
|| dialog2
->exstyle
->and_mask
) ||
352 (dialog1
->exstyle
->or_mask
!= dialog2
->exstyle
->or_mask
))
354 } else if(!different
&&
355 ((dialog1
->gotexstyle
&& !dialog2
->gotexstyle
) ||
356 (!dialog1
->gotexstyle
&& dialog2
->gotexstyle
)))
358 if(!different
&& dialog1
->gothelpid
&& dialog2
->gothelpid
) {
359 if(dialog1
->helpid
!= dialog2
->helpid
)
361 } else if(!different
&&
362 ((dialog1
->gothelpid
&& !dialog2
->gothelpid
) ||
363 (!dialog1
->gothelpid
&& dialog2
->gothelpid
)))
365 nameid
= strdup(get_nameid_str(dialog1
->menu
));
366 if(!different
&& strcmp(nameid
, get_nameid_str(dialog2
->menu
)))
369 nameid
= strdup(get_nameid_str(dialog1
->dlgclass
));
370 if(!different
&& strcmp(nameid
, get_nameid_str(dialog2
->dlgclass
)))
374 ctrl1
= dialog1
->controls
;
375 ctrl2
= dialog2
->controls
;
376 while(!different
&& (ctrl1
|| ctrl2
))
378 different
= compare_control(ctrl1
, ctrl2
);
379 if (ctrl1
) ctrl1
= ctrl1
->next
;
380 if (ctrl2
) ctrl2
= ctrl2
->next
;
385 static int compare_font(font_t
*font1
, font_t
*font2
) {
388 ((font1
->memopt
!= font2
->memopt
) ||
389 (font1
->data
->lvc
.version
!= font2
->data
->lvc
.version
) ||
390 (font1
->data
->lvc
.characts
!= font2
->data
->lvc
.characts
)))
395 static int compare_fontdir(fontdir_t
*fontdir1
, fontdir_t
*fontdir2
) {
398 ((fontdir1
->memopt
!= fontdir2
->memopt
) ||
399 (fontdir1
->data
->lvc
.version
!= fontdir2
->data
->lvc
.version
) ||
400 (fontdir1
->data
->lvc
.characts
!= fontdir2
->data
->lvc
.characts
)))
405 static int compare_icon(icon_t
*icon1
, icon_t
*icon2
) {
408 ((icon1
->id
!= icon2
->id
) ||
409 (icon1
->width
!= icon2
->width
) ||
410 (icon1
->height
!= icon2
->height
)))
413 ((icon1
->lvc
.version
!= icon2
->lvc
.version
) ||
414 (icon1
->lvc
.characts
!= icon2
->lvc
.characts
)))
419 static int compare_icon_group(icon_group_t
*icon_group1
, icon_group_t
*icon_group2
) {
421 icon_t
*icon1
= NULL
, *icon2
= NULL
;
423 ((icon_group1
->memopt
!= icon_group2
->memopt
) ||
424 (icon_group1
->lvc
.version
!= icon_group2
->lvc
.version
) ||
425 (icon_group1
->lvc
.characts
!= icon_group2
->lvc
.characts
)))
428 (icon_group1
->nicon
!= icon_group2
->nicon
))
431 icon1
= icon_group1
->iconlist
;
432 icon2
= icon_group2
->iconlist
;
433 while(!different
&& icon1
&& icon2
) {
434 different
= compare_icon(icon1
, icon2
);
439 ((icon1
&& !icon2
) ||
446 static int compare_menu_item(menu_item_t
*menu_item1
, menu_item_t
*menu_item2
) {
448 while(!different
&& menu_item1
&& menu_item2
) {
449 if(menu_item1
->popup
&& menu_item2
->popup
) {
450 if(!different
&& menu_item1
->gotid
&& menu_item2
->gotid
) {
451 if(menu_item1
->id
!= menu_item2
->id
)
453 } else if(!different
&&
454 ((menu_item1
->gotid
&& !menu_item2
->gotid
) ||
455 (!menu_item1
->gotid
&& menu_item2
->gotid
)))
457 if(!different
&& menu_item1
->gottype
&& menu_item2
->gottype
) {
458 if(menu_item1
->type
!= menu_item2
->type
)
460 } else if(!different
&&
461 ((menu_item1
->gottype
&& !menu_item2
->gottype
) ||
462 (!menu_item1
->gottype
&& menu_item2
->gottype
)))
464 if(!different
&& menu_item1
->gotstate
&& menu_item2
->gotstate
) {
465 if(menu_item1
->state
!= menu_item2
->state
)
467 } else if(!different
&&
468 ((menu_item1
->gotstate
&& !menu_item2
->gotstate
) ||
469 (!menu_item1
->gotstate
&& menu_item2
->gotstate
)))
471 if(!different
&& menu_item1
->gothelpid
&& menu_item2
->gothelpid
) {
472 if(menu_item1
->helpid
!= menu_item2
->helpid
)
474 } else if(!different
&&
475 ((menu_item1
->gothelpid
&& !menu_item2
->gothelpid
) ||
476 (!menu_item1
->gothelpid
&& menu_item2
->gothelpid
)))
479 different
= compare_menu_item(menu_item1
->popup
, menu_item2
->popup
);
480 } else if(!menu_item1
->popup
&& !menu_item2
->popup
) {
481 if(menu_item1
->name
&& menu_item2
->name
) {
482 if(!different
&& menu_item1
->gotid
&& menu_item2
->gotid
) {
483 if(menu_item1
->id
!= menu_item2
->id
)
485 } else if(!different
&&
486 ((menu_item1
->gotid
&& !menu_item2
->gotid
) ||
487 (!menu_item1
->gotid
&& menu_item2
->gotid
)))
489 if(!different
&& menu_item1
->gottype
&& menu_item2
->gottype
) {
490 if(menu_item1
->type
!= menu_item2
->type
)
492 } else if(!different
&&
493 ((menu_item1
->gottype
&& !menu_item2
->gottype
) ||
494 (!menu_item1
->gottype
&& menu_item2
->gottype
)))
496 if(!different
&& menu_item1
->gotstate
&& menu_item2
->gotstate
) {
497 if(menu_item1
->state
!= menu_item2
->state
)
499 } else if(!different
&&
500 ((menu_item1
->gotstate
&& !menu_item2
->gotstate
) ||
501 (!menu_item1
->gotstate
&& menu_item2
->gotstate
)))
503 if(!different
&& menu_item1
->gothelpid
&& menu_item2
->gothelpid
) {
504 if(menu_item1
->helpid
!= menu_item2
->helpid
)
506 } else if(!different
&&
507 ((menu_item1
->gothelpid
&& !menu_item2
->gothelpid
) ||
508 (!menu_item1
->gothelpid
&& menu_item2
->gothelpid
)))
510 } else if((menu_item1
->name
&& !menu_item2
->name
) ||
511 (!menu_item1
->name
&& menu_item2
->name
))
515 menu_item1
= menu_item1
->next
;
516 menu_item2
= menu_item2
->next
;
519 ((menu_item1
&& !menu_item2
) ||
520 (!menu_item1
&& menu_item2
)))
525 static int compare_menu(menu_t
*menu1
, menu_t
*menu2
) {
528 ((menu1
->memopt
!= menu2
->memopt
) ||
529 (menu1
->lvc
.version
!= menu2
->lvc
.version
) ||
530 (menu1
->lvc
.characts
!= menu2
->lvc
.characts
)))
533 different
= compare_menu_item(menu1
->items
, menu2
->items
);
537 static int compare_rcdata(rcdata_t
*rcdata1
, rcdata_t
*rcdata2
) {
540 ((rcdata1
->memopt
!= rcdata2
->memopt
) ||
541 (rcdata1
->data
->lvc
.version
!= rcdata2
->data
->lvc
.version
) ||
542 (rcdata1
->data
->lvc
.characts
!= rcdata2
->data
->lvc
.characts
)))
547 static int compare_html(html_t
*rcdata1
, html_t
*rcdata2
) {
550 ((rcdata1
->memopt
!= rcdata2
->memopt
) ||
551 (rcdata1
->data
->lvc
.version
!= rcdata2
->data
->lvc
.version
) ||
552 (rcdata1
->data
->lvc
.characts
!= rcdata2
->data
->lvc
.characts
)))
557 static int compare_stringtable(stringtable_t
*stringtable1
, stringtable_t
*stringtable2
) {
560 while(!different
&& stringtable1
&& stringtable2
) {
561 if((stringtable1
->memopt
!= stringtable2
->memopt
) ||
562 (stringtable1
->lvc
.version
!= stringtable2
->lvc
.version
) ||
563 (stringtable1
->lvc
.characts
!= stringtable2
->lvc
.characts
))
566 if((stringtable1
->nentries
!= stringtable2
->nentries
) ||
567 (stringtable1
->idbase
!= stringtable2
->idbase
))
570 for(i
= 0 ; i
< stringtable1
->nentries
; i
++)
571 if((stringtable1
->entries
[i
].id
!= stringtable2
->entries
[i
].id
) ||
572 (stringtable1
->entries
[i
].memopt
!= stringtable2
->entries
[i
].memopt
) ||
573 (stringtable1
->entries
[i
].str
&& !stringtable2
->entries
[i
].str
) ||
574 (!stringtable1
->entries
[i
].str
&& stringtable2
->entries
[i
].str
)) {
579 stringtable1
= stringtable1
->next
;
580 stringtable2
= stringtable2
->next
;
585 static int compare_user(user_t
*user1
, user_t
*user2
) {
589 ((user1
->memopt
!= user2
->memopt
) ||
590 (user1
->data
->lvc
.version
!= user2
->data
->lvc
.version
) ||
591 (user1
->data
->lvc
.characts
!= user2
->data
->lvc
.characts
)))
593 nameid
= strdup(get_nameid_str(user1
->type
));
594 if(!different
&& strcmp(nameid
, get_nameid_str(user2
->type
)))
600 static int compare_messagetable(messagetable_t
*messagetable1
, messagetable_t
*messagetable2
) {
603 ((messagetable1
->memopt
!= messagetable2
->memopt
) ||
604 (messagetable1
->data
->lvc
.version
!= messagetable2
->data
->lvc
.version
) ||
605 (messagetable1
->data
->lvc
.characts
!= messagetable2
->data
->lvc
.characts
)))
610 static int compare_string(string_t
*string1
, string_t
*string2
) {
613 ((string1
->size
!= string2
->size
) ||
614 (string1
->type
!= string2
->type
)))
617 if(string1
->type
== str_char
)
618 different
= memcmp(string1
->str
.cstr
, string2
->str
.cstr
, string1
->size
);
619 else if(string1
->type
== str_unicode
)
620 different
= memcmp(string1
->str
.wstr
, string2
->str
.wstr
, string1
->size
*sizeof(WCHAR
));
627 static int compare_ver_block(ver_block_t
*ver_block1
, ver_block_t
*ver_block2
);
629 static int compare_ver_value(ver_value_t
*ver_value1
, ver_value_t
*ver_value2
) {
633 (ver_value1
->type
== ver_value2
->type
)) {
634 switch(ver_value1
->type
) {
636 if(!different
&& ver_value1
->key
&& ver_value2
->key
)
637 different
= compare_string(ver_value1
->key
, ver_value2
->key
);
638 else if(!different
&&
639 ((ver_value1
->key
&& !ver_value2
->key
) ||
640 (!ver_value1
->key
&& ver_value2
->key
)))
644 if(!different
&& ver_value1
->key
&& ver_value2
->key
)
645 different
= compare_string(ver_value1
->key
, ver_value2
->key
);
646 else if(!different
&&
647 ((ver_value1
->key
&& !ver_value2
->key
) ||
648 (!ver_value1
->key
&& ver_value2
->key
)))
650 if(!different
&& ver_value1
->value
.words
&& ver_value2
->value
.words
) {
652 (ver_value1
->value
.words
->nwords
!= ver_value2
->value
.words
->nwords
))
655 for(i
= 0; i
< ver_value1
->value
.words
->nwords
; i
++) {
656 if(ver_value1
->value
.words
->words
[i
] != ver_value2
->value
.words
->words
[i
]) {
661 } else if(!different
&&
662 ((ver_value1
->value
.words
&& !ver_value2
->value
.words
) ||
663 (!ver_value1
->value
.words
&& ver_value2
->value
.words
)))
667 if(!different
&& ver_value1
->value
.block
&& ver_value2
->value
.block
)
668 different
= compare_ver_block(ver_value1
->value
.block
, ver_value2
->value
.block
);
669 else if(!different
&&
670 ((ver_value1
->value
.block
&& !ver_value2
->value
.block
) ||
671 (!ver_value1
->value
.block
&& ver_value2
->value
.block
)))
682 static int compare_ver_block(ver_block_t
*ver_block1
, ver_block_t
*ver_block2
) {
684 ver_value_t
*ver_value1
= NULL
, *ver_value2
= NULL
;
686 ver_value1
= ver_block1
->values
;
687 ver_value2
= ver_block2
->values
;
688 while(!different
&& ver_value1
&& ver_value2
) {
689 different
= compare_ver_value(ver_value1
, ver_value2
);
690 ver_value1
= ver_value1
->next
;
691 ver_value2
= ver_value2
->next
;
694 ((ver_value1
&& !ver_value2
) ||
695 (!ver_value1
&& ver_value2
)))
701 static int compare_versioninfo(versioninfo_t
*versioninfo1
, versioninfo_t
*versioninfo2
) {
703 ver_block_t
*ver_block1
= NULL
, *ver_block2
= NULL
;
705 ((versioninfo1
->memopt
!= versioninfo2
->memopt
) ||
706 (versioninfo1
->lvc
.version
!= versioninfo2
->lvc
.version
) ||
707 (versioninfo1
->lvc
.characts
!= versioninfo2
->lvc
.characts
)))
709 if(!different
&& versioninfo1
->gotit
.fv
&& versioninfo2
->gotit
.fv
) {
710 if((versioninfo1
->filever_maj1
!= versioninfo2
->filever_maj1
) ||
711 (versioninfo1
->filever_maj2
!= versioninfo2
->filever_maj2
) ||
712 (versioninfo1
->filever_min1
!= versioninfo2
->filever_min1
) ||
713 (versioninfo1
->filever_min2
!= versioninfo2
->filever_min2
))
715 } else if(!different
&&
716 ((versioninfo1
->gotit
.fv
&& !versioninfo2
->gotit
.fv
) ||
717 (!versioninfo1
->gotit
.fv
&& versioninfo2
->gotit
.fv
)))
719 if(!different
&& versioninfo1
->gotit
.pv
&& versioninfo2
->gotit
.pv
) {
720 if((versioninfo1
->prodver_maj1
!= versioninfo2
->prodver_maj1
) ||
721 (versioninfo1
->prodver_maj2
!= versioninfo2
->prodver_maj2
) ||
722 (versioninfo1
->prodver_min1
!= versioninfo2
->prodver_min1
) ||
723 (versioninfo1
->prodver_min2
!= versioninfo2
->prodver_min2
))
725 } else if(!different
&&
726 ((versioninfo1
->gotit
.pv
&& !versioninfo2
->gotit
.pv
) ||
727 (!versioninfo1
->gotit
.pv
&& versioninfo2
->gotit
.pv
)))
729 if(!different
&& versioninfo1
->gotit
.fo
&& versioninfo2
->gotit
.fo
) {
730 if(versioninfo1
->fileos
!= versioninfo2
->fileos
)
732 } else if(!different
&&
733 ((versioninfo1
->gotit
.fo
&& !versioninfo2
->gotit
.fo
) ||
734 (!versioninfo1
->gotit
.fo
&& versioninfo2
->gotit
.fo
)))
736 if(!different
&& versioninfo1
->gotit
.ff
&& versioninfo2
->gotit
.ff
) {
737 if(versioninfo1
->fileflags
!= versioninfo2
->fileflags
)
739 } else if(!different
&&
740 ((versioninfo1
->gotit
.ff
&& !versioninfo2
->gotit
.ff
) ||
741 (!versioninfo1
->gotit
.ff
&& versioninfo2
->gotit
.ff
)))
743 if(!different
&& versioninfo1
->gotit
.ffm
&& versioninfo2
->gotit
.ffm
) {
744 if(versioninfo1
->fileflagsmask
!= versioninfo2
->fileflagsmask
)
746 } else if(!different
&&
747 ((versioninfo1
->gotit
.ffm
&& !versioninfo2
->gotit
.ffm
) ||
748 (!versioninfo1
->gotit
.ffm
&& versioninfo2
->gotit
.ffm
)))
750 if(!different
&& versioninfo1
->gotit
.ft
&& versioninfo2
->gotit
.ft
) {
751 if(versioninfo1
->filetype
!= versioninfo2
->filetype
)
753 } else if(!different
&&
754 ((versioninfo1
->gotit
.ft
&& !versioninfo2
->gotit
.ft
) ||
755 (!versioninfo1
->gotit
.ft
&& versioninfo2
->gotit
.ft
)))
757 if(!different
&& versioninfo1
->gotit
.fst
&& versioninfo2
->gotit
.fst
) {
758 if(versioninfo1
->filesubtype
!= versioninfo2
->filesubtype
)
760 } else if(!different
&&
761 ((versioninfo1
->gotit
.fst
&& !versioninfo2
->gotit
.fst
) ||
762 (!versioninfo1
->gotit
.fst
&& versioninfo2
->gotit
.fst
)))
765 ver_block1
= versioninfo1
->blocks
;
766 ver_block2
= versioninfo2
->blocks
;
767 while(!different
&& ver_block1
&& ver_block2
) {
768 different
= compare_ver_block(ver_block1
, ver_block2
);
769 ver_block1
= ver_block1
->next
;
770 ver_block2
= ver_block2
->next
;
773 ((ver_block1
&& !ver_block2
) ||
774 (!ver_block1
&& ver_block2
)))
780 static int compare_dlginit(dlginit_t
*dlginit1
, dlginit_t
*dlginit2
) {
783 ((dlginit1
->memopt
!= dlginit2
->memopt
) ||
784 (dlginit1
->data
->lvc
.version
!= dlginit2
->data
->lvc
.version
) ||
785 (dlginit1
->data
->lvc
.characts
!= dlginit2
->data
->lvc
.characts
)))
790 static int compare_toolbar_item(toolbar_item_t
*toolbar_item1
, toolbar_item_t
*toolbar_item2
) {
792 while(!different
&& toolbar_item1
&& toolbar_item2
) {
793 if((toolbar_item1
->id
&& !toolbar_item2
->id
) ||
794 (!toolbar_item1
->id
&& toolbar_item2
->id
))
796 toolbar_item1
= toolbar_item1
->next
;
797 toolbar_item2
= toolbar_item2
->next
;
800 ((toolbar_item1
&& !toolbar_item2
) ||
801 (!toolbar_item1
&& toolbar_item2
)))
806 static int compare_toolbar(toolbar_t
*toolbar1
, toolbar_t
*toolbar2
) {
809 ((toolbar1
->memopt
!= toolbar2
->memopt
) ||
810 (toolbar1
->lvc
.version
!= toolbar2
->lvc
.version
) ||
811 (toolbar1
->lvc
.characts
!= toolbar2
->lvc
.characts
)))
814 different
= compare_toolbar_item(toolbar1
->items
, toolbar2
->items
);
818 static int compare_ani_curico(ani_curico_t
*ani_curico1
, ani_curico_t
*ani_curico2
) {
821 ((ani_curico1
->memopt
!= ani_curico2
->memopt
) ||
822 (ani_curico1
->data
->lvc
.version
!= ani_curico2
->data
->lvc
.version
) ||
823 (ani_curico1
->data
->lvc
.characts
!= ani_curico2
->data
->lvc
.characts
)))
828 static int compare(resource_t
*resource1
, resource_t
*resource2
) {
829 switch(resource1
->type
) {
831 return compare_accelerator(resource1
->res
.acc
, resource2
->res
.acc
);
833 return compare_bitmap(resource1
->res
.bmp
, resource2
->res
.bmp
);
835 return compare_cursor(resource1
->res
.cur
, resource2
->res
.cur
);
837 return compare_cursor_group(resource1
->res
.curg
, resource2
->res
.curg
);
839 return compare_dialog(resource1
->res
.dlg
, resource2
->res
.dlg
);
841 return compare_font(resource1
->res
.fnt
, resource2
->res
.fnt
);
843 return compare_fontdir(resource1
->res
.fnd
, resource2
->res
.fnd
);
845 return compare_icon(resource1
->res
.ico
, resource2
->res
.ico
);
847 return compare_icon_group(resource1
->res
.icog
, resource2
->res
.icog
);
849 return compare_menu(resource1
->res
.men
, resource2
->res
.men
);
851 return compare_rcdata(resource1
->res
.rdt
, resource2
->res
.rdt
);
853 return compare_stringtable(resource1
->res
.stt
, resource2
->res
.stt
);
855 return compare_user(resource1
->res
.usr
, resource2
->res
.usr
);
857 return compare_html(resource1
->res
.html
, resource2
->res
.html
);
859 return compare_messagetable(resource1
->res
.msg
, resource2
->res
.msg
);
861 return compare_versioninfo(resource1
->res
.ver
, resource2
->res
.ver
);
863 return compare_dlginit(resource1
->res
.dlgi
, resource2
->res
.dlgi
);
865 return compare_toolbar(resource1
->res
.tbt
, resource2
->res
.tbt
);
868 return compare_ani_curico(resource1
->res
.ani
, resource2
->res
.ani
);
870 /* Not supposed to reach here */
871 fprintf(stderr
, "Not supposed to reach here (compare())\n");
877 typedef struct resource_lang_node
881 struct resource_lang_node
*next
;
882 } resource_lang_node_t
;
884 typedef struct resource_id_node
887 resource_lang_node_t
*langs
;
888 struct resource_id_node
*next
;
889 } resource_id_node_t
;
894 struct resource_id_node
*ids
;
895 } verify_tab
[res_usr
+1];
897 static void add_resource(resource_t
*res
)
899 resource_id_node_t
*idnode
;
900 resource_lang_node_t
*langnode
;
901 if (!verify_tab
[res
->type
].enabled
)
903 fprintf(stderr
, "ERR: Report this: unknown resource type parsed %08x\n", res
->type
);
907 for (idnode
= verify_tab
[res
->type
].ids
; idnode
; idnode
= idnode
->next
)
908 if (compare_name_id(idnode
->id
, res
->name
) == 0)
913 idnode
= xmalloc(sizeof(resource_id_node_t
));
914 idnode
->id
= res
->name
;
915 idnode
->langs
= NULL
;
916 idnode
->next
= verify_tab
[res
->type
].ids
;
917 verify_tab
[res
->type
].ids
= idnode
;
920 for (langnode
= idnode
->langs
; langnode
; langnode
= langnode
->next
)
921 if (compare_lang(langnode
->lang
, get_language(res
)) == 0)
923 fprintf(stderr
, "ERR: resource %s [type %x] language %03x:%02x duplicated!\n",
924 get_nameid_str(res
->name
), res
->type
, langnode
->lang
.id
, langnode
->lang
.sub
);
928 langnode
= xmalloc(sizeof(resource_lang_node_t
));
930 langnode
->lang
= get_language(res
);
931 langnode
->next
= idnode
->langs
;
932 idnode
->langs
= langnode
;
935 static void setup_tabs(void)
939 for (i
= 0; i
<= res_usr
; i
++)
961 verify_tab
[i
].enabled
= 1;
966 static const char *get_typename_for_int(int type
) {
969 return get_typename(&res
);
972 static resource_t
*find_main(int type
, name_id_t
*id
, resource_lang_node_t
*langnode
)
974 resource_t
*neutral
= NULL
, *en
= NULL
, *en_US
= NULL
;
975 for (; langnode
; langnode
= langnode
->next
)
977 if (langnode
->lang
.id
== LANG_NEUTRAL
&& langnode
->lang
.sub
== SUBLANG_NEUTRAL
)
978 neutral
= langnode
->res
;
979 if (langnode
->lang
.id
== MASTER_LANGUAGE
&& langnode
->lang
.sub
== SUBLANG_NEUTRAL
)
981 if (langnode
->lang
.id
== MASTER_LANGUAGE
&& langnode
->lang
.sub
== MASTER_SUBLANGUAGE
)
982 en_US
= langnode
->res
;
985 if (neutral
!= NULL
&& (en
!= NULL
|| en_US
!= NULL
))
987 fprintf(stderr
, "INFO: Resource %04x/%s has both NEUTRAL and MASTER language translation\n",
988 type
, get_nameid_str(id
));
991 if (en_US
!= NULL
) return en_US
;
992 if (en
!= NULL
) return en
;
996 void verify_translations(resource_t
*top
) {
997 resource_t
*curr
= top
;
998 resource_id_node_t
*idnode
;
999 resource_lang_node_t
*langnode
;
1009 for (type
= 0; type
<= res_usr
; type
++)
1011 printf("TYPE NEXT [%s]\n", get_typename_for_int(type
));
1012 for (idnode
= verify_tab
[type
].ids
; idnode
; idnode
= idnode
->next
)
1014 resource_t
*mainres
;
1015 printf("RESOURCE [%s]\n", get_nameid_str(idnode
->id
));
1017 mainres
= find_main(type
, idnode
->id
, idnode
->langs
);
1020 fprintf(stderr
, "ERR: resource %04x/%s has translation(s) but not available in NEUTRAL or MASTER language\n",
1021 type
, get_nameid_str(idnode
->id
));
1022 for (langnode
= idnode
->langs
; langnode
; langnode
= langnode
->next
)
1023 printf("EXTRA %03x:%02x\n", langnode
->lang
.id
, langnode
->lang
.sub
);
1027 if (get_language_id(mainres
) == LANG_NEUTRAL
&& idnode
->langs
->next
== NULL
) {
1028 printf("NOTRANSL\n");
1032 for (langnode
= idnode
->langs
; langnode
; langnode
= langnode
->next
)
1034 printf("EXIST %03x:%02x\n", langnode
->lang
.id
, langnode
->lang
.sub
);
1035 if (compare(langnode
->res
, mainres
))
1037 printf("DIFF %03x:%02x\n", langnode
->lang
.id
, langnode
->lang
.sub
);