1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
|
/*************************************************************************
*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* Copyright 2000, 2010 Oracle and/or its affiliates.
*
* OpenOffice.org - a multi-platform office productivity suite
*
* This file is part of OpenOffice.org.
*
* OpenOffice.org is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License version 3
* only, as published by the Free Software Foundation.
*
* OpenOffice.org is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License version 3 for more details
* (a copy is included in the LICENSE file that accompanied this code).
*
* You should have received a copy of the GNU Lesser General Public License
* version 3 along with OpenOffice.org. If not, see
* <http://www.openoffice.org/license.html>
* for a copy of the LGPLv3 License.
*
************************************************************************/
#include "macros.inc"
#ifdef MACOSX
Directory gid_Dir_Bundle_Contents_Resources
ParentID = gid_Dir_Bundle_Contents;
HostName = "Resources";
End
#endif
#ifdef MACOSX
Directory gid_Dir_Bundle_Contents_Resources_Lang
ParentID = gid_Dir_Bundle_Contents_Resources;
DIR_ISOLANGUAGE_ALL_LANG_LPROJ;
End
#endif
#ifdef MACOSX
Directory gid_Dir_Bundle_Contents_Library
ParentID = gid_Dir_Bundle_Contents;
HostName = "Library";
End
#endif
#ifdef MACOSX
Directory gid_Dir_Bundle_Contents_Library_Spotlight
ParentID = gid_Dir_Bundle_Contents_Library;
HostName = "Spotlight";
End
#endif
#ifdef MACOSX
Directory gid_Dir_Bundle_Contents_Library_Spotlight_Bundle
ParentID = gid_Dir_Bundle_Contents_Library_Spotlight;
HostName = "OOoSpotlightImporter.mdimporter";
End
#endif
#ifdef MACOSX
Directory gid_Dir_Bundle_Contents_Library_Spotlight_Bundle_Contents
ParentID = gid_Dir_Bundle_Contents_Library_Spotlight_Bundle;
HostName = "Contents";
End
#endif
#ifndef MACOSX
Directory gid_Dir_Ooo_Openofficeorg
ParentID = PREDEFINED_PROGDIR;
#ifdef WNT
HostName = "${BASISROOTNAME}";
#else
HostName = ".";
#endif
End
#endif
#ifndef MACOSX
Directory gid_Dir_Ooo_Basis
#ifdef WNT
ParentID = gid_Dir_Brand_Root;
#else
ParentID = gid_Dir_Ooo_Openofficeorg;
#endif
#ifdef WNT
HostName = "Basis";
#else
HostName = "basis${OOOBASEVERSION}";
#endif
Styles = (BASISDIRECTORY);
End
#endif
Directory gid_Dir_Program
#if defined MACOSX
ParentID = gid_Brand_Dir_BasisLink;
#else
ParentID = gid_Dir_Ooo_Basis;
#endif
DosName = "program";
End
#if defined MACOSX
Unixlink gid_Unixlink_Applications
BIN_FILE_BODY;
Styles = ();
Dir = PD_PROGDIR;
Name = "Applications";
Target = "/Applications";
End
#endif
Directory gid_Dir_Program_Remote
ParentID = gid_Dir_Program;
DosName = "remote";
End
Directory gid_Dir_Program_Local
ParentID = gid_Dir_Program;
DosName = "local";
End
Directory gid_Dir_Addin
Styles = (CREATE);
ParentID = gid_Dir_Program;
DosName = "addin";
End
Directory gid_Dir_Addin_Source
ParentID = gid_Dir_Addin;
DosName = "source";
End
Directory gid_Dir_Filter
ParentID = gid_Dir_Program;
DosName = "filter";
End
Directory gid_Dir_Resource
ParentID = gid_Dir_Program;
DosName = "resource";
End
Directory gid_Dir_Httphome
ParentID = gid_Dir_Program;
DosName = "httphome";
End
Directory gid_Dir_Classes
ParentID = gid_Dir_Program;
DosName = "classes";
End
#ifdef WNT
Directory gid_Dir_Shellnew
ParentID = gid_Dir_Program;
DosName = "shellnew";
End
Directory gid_Dir_ShellnewToo
ParentID = gid_Dir_Program;
DosName = "shellnew2";
End
#endif
Directory gid_Dir_User
#if defined MACOSX
ParentID = gid_Brand_Dir_BasisLink;
#else
ParentID = gid_Dir_Ooo_Basis;
#endif
DosName = "presets";
End
Directory gid_Dir_User_Xslt
ParentID = gid_Dir_User;
DosName = "xslt";
End
Directory gid_Dir_User_Autotext
ParentID = gid_Dir_User;
DosName = "autotext";
Styles = (WORKSTATION, CREATE);
End
Directory gid_Dir_User_Autotext_Language
ParentID = gid_Dir_User_Autotext;
DIR_ISOLANGUAGE_ALL_LANG_2;
End
Directory gid_Dir_User_Uno_Packages
ParentID = gid_Dir_User;
DosName = "uno_packages";
Styles = (CREATE);
End
Directory gid_Dir_User_Uno_Packages_Cache
ParentID = gid_Dir_User_Uno_Packages;
DosName = "cache";
Styles = (CREATE);
End
Directory gid_Dir_User_Temp
ParentID = gid_Dir_User;
DosName = "temp";
Styles = (WORKSTATION, CREATE);
End
Directory gid_Dir_User_Autocorr
ParentID = gid_Dir_User;
DosName = "autocorr";
Styles = (WORKSTATION, CREATE);
End
Directory gid_Dir_User_Bookmark
ParentID = gid_Dir_User;
DosName = "bookmark";
Styles = (WORKSTATION);
End
Directory gid_Dir_User_Cache
ParentID = gid_Dir_User;
DosName = "cache";
End
Directory gid_Dir_User_Scripts
ParentID = gid_Dir_User;
DosName = "Scripts";
Styles = (WORKSTATION,CREATE);
End
Directory gid_Dir_Backup
ParentID = gid_Dir_User;
DosName = "backup";
Styles = (WORKSTATION, CREATE);
End
Directory gid_Dir_User_Basic
ParentID = gid_Dir_User;
DosName = "basic";
Styles = (WORKSTATION, CREATE);
End
Directory gid_Dir_Basic_Standard
ParentID = gid_Dir_User_Basic;
DosName = "Standard";
End
Directory gid_Dir_User_Config
ParentID = gid_Dir_User;
DosName = "config";
Styles = (WORKSTATION, CREATE);
End
Directory gid_Dir_User_Config_Sofficecfg
ParentID = gid_Dir_User_Config;
DosName = "soffice.cfg";
Styles = (WORKSTATION);
End
Directory gid_Dir_User_Config_Sofficecfg_Metainf
ParentID = gid_Dir_User_Config_Sofficecfg;
DosName = "META-INF";
Styles = (WORKSTATION);
End
Directory gid_Dir_User_Config_Sofficecfg_Bitmaps
ParentID = gid_Dir_User_Config_Sofficecfg;
DosName = "Bitmaps";
Styles = (WORKSTATION);
End
Directory gid_Dir_User_Template
ParentID = gid_Dir_User;
DosName = "template";
Styles = (WORKSTATION, CREATE);
End
Directory gid_Dir_Database
ParentID = gid_Dir_User;
DosName = "database";
Styles = (WORKSTATION, CREATE);
End
Directory gid_Dir_Database_Biblio
ParentID = gid_Dir_Database;
DosName = "biblio";
Styles = (WORKSTATION, CREATE);
End
Directory gid_Dir_Desktop
ParentID = gid_Dir_User;
DosName = "desktop";
Styles = (WORKSTATION);
End
Directory gid_Dir_User_Explorer
ParentID = gid_Dir_User;
DosName = "explorer";
Styles = (WORKSTATION);
End
Directory gid_Dir_User_Gallery
ParentID = gid_Dir_User;
DosName = "gallery";
Styles = (WORKSTATION, CREATE);
End
Directory gid_Dir_User_Wordbook
ParentID = gid_Dir_User;
DosName = "wordbook";
Styles = (WORKSTATION, CREATE);
End
Directory gid_Dir_Store
ParentID = gid_Dir_User;
DosName = "store";
Styles = (WORKSTATION, CREATE);
End
Directory gid_Dir_Store_Trash
ParentID = gid_Dir_Store;
DosName = "trash";
Styles = (WORKSTATION);
End
Directory gid_Dir_Download
ParentID = gid_Dir_User;
DosName = "download";
Styles = (WORKSTATION);
End
Directory gid_Dir_Work
ParentID = gid_Dir_User;
DosName = "work";
Styles = (WORKSTATION);
End
Directory gid_Dir_Plugin
ParentID = gid_Dir_Program;
DosName = "plugin";
Styles = (WORKSTATION, CREATE);
End
Directory gid_Dir_Share
#if defined MACOSX
ParentID = gid_Brand_Dir_BasisLink;
#else
ParentID = gid_Dir_Ooo_Basis;
#endif
DosName = "share";
End
Directory gid_Dir_Share_Migration
ParentID = gid_Dir_Share;
DosName = "migration";
End
Directory gid_Dir_Fonts
ParentID = gid_Dir_Share;
DosName = "fonts";
End
#ifdef WNT
Directory gid_Dir_Winfonts
ParentID = gid_Dir_Fonts;
DosName = "truetype";
End
#endif
Directory gid_Dir_Share_Xslt
ParentID = gid_Dir_Share;
DosName = "xslt";
End
Directory gid_Dir_Share_Xslt_Docbook
ParentID = gid_Dir_Share_Xslt;
DosName = "docbook";
End
Directory gid_Dir_Share_Xslt_Common
ParentID = gid_Dir_Share_Xslt;
DosName = "common";
End
Directory gid_Dir_Share_Xslt_Export
ParentID = gid_Dir_Share_Xslt;
DosName = "export";
End
Directory gid_Dir_Share_Xslt_Export_Common
ParentID = gid_Dir_Share_Xslt_Export;
DosName = "common";
End
Directory gid_Dir_Share_Xslt_Export_Common_Body
ParentID = gid_Dir_Share_Xslt_Export_Common;
DosName = "body";
End
Directory gid_Dir_Share_Xslt_Export_Common_Styles
ParentID = gid_Dir_Share_Xslt_Export_Common;
DosName = "styles";
End
Directory gid_Dir_Share_Xslt_Export_Common_Table
ParentID = gid_Dir_Share_Xslt_Export_Common;
DosName = "table";
End
Directory gid_Dir_Share_Xslt_Export_Spreadsheetml
ParentID = gid_Dir_Share_Xslt_Export;
DosName = "spreadsheetml";
End
Directory gid_Dir_Share_Xslt_Export_uof
ParentID = gid_Dir_Share_Xslt_Export;
DosName = "uof";
End
Directory gid_Dir_Share_Xslt_Import_uof
ParentID = gid_Dir_Share_Xslt_Import;
DosName = "uof";
End
Directory gid_Dir_Share_Xslt_Export_Wordml
ParentID = gid_Dir_Share_Xslt_Export;
DosName = "wordml";
End
Directory gid_Dir_Share_Xslt_Export_Xhtml
ParentID = gid_Dir_Share_Xslt_Export;
DosName = "xhtml";
End
Directory gid_Dir_Share_Xslt_Import
ParentID = gid_Dir_Share_Xslt;
DosName = "import";
End
Directory gid_Dir_Share_Xslt_Import_Spreadsheetml
ParentID = gid_Dir_Share_Xslt_Import;
DosName = "spreadsheetml";
End
Directory gid_Dir_Share_Xslt_Import_Wordml
ParentID = gid_Dir_Share_Xslt_Import;
DosName = "wordml";
End
Directory gid_Dir_Share_Xslt_Import_Common
ParentID = gid_Dir_Share_Xslt_Import;
DosName = "common";
End
Directory gid_Dir_Share_Xslt_Odfflatxml
ParentID = gid_Dir_Share_Xslt;
DosName = "odfflatxml";
End
Directory gid_Dir_Share_Dtd
ParentID = gid_Dir_Share;
DosName = "dtd";
End
Directory gid_Dir_Share_Dtd_Ooo
ParentID = gid_Dir_Share_Dtd;
DosName = "officedocument";
End
Directory gid_Dir_Share_Dtd_Ooo_1_0
ParentID = gid_Dir_Share_Dtd_Ooo;
DosName = "1_0";
End
Directory gid_Dir_Share_Dtd_Math
ParentID = gid_Dir_Share_Dtd;
DosName = "math";
End
Directory gid_Dir_Share_Dtd_Math_1_01
ParentID = gid_Dir_Share_Dtd_Math;
DosName = "1_01";
End
Directory gid_Dir_Share_Pqa
ParentID = gid_Dir_Share;
DosName = "pqa";
End
Directory gid_Dir_Share_Config
ParentID = gid_Dir_Share;
DosName = "config";
End
Directory gid_Dir_Share_Config_Wizard
ParentID = gid_Dir_Share_Config;
DosName = "wizard";
End
Directory gid_Dir_Share_Config_Wizard_Web
ParentID = gid_Dir_Share_Config_Wizard;
DosName = "web";
End
Directory gid_Dir_Share_Config_Wizard_Web_Buttons
ParentID = gid_Dir_Share_Config_Wizard_Web;
DosName = "buttons";
End
Directory gid_Dir_Share_Config_Sofficecfg
ParentID = gid_Dir_Share_Config;
DosName = "soffice.cfg";
End
Directory gid_Dir_Share_Config_Sofficecfg_Basicide
ParentID = gid_Dir_Share_Config_Sofficecfg;
DosName = "BasicIDE";
End
Directory gid_Dir_Share_Config_Sofficecfg_Basicide_Menubar
ParentID = gid_Dir_Share_Config_Sofficecfg_Basicide;
DosName = "menubar";
End
Directory gid_Dir_Share_Config_Sofficecfg_Dbquery
ParentID = gid_Dir_Share_Config_Sofficecfg;
DosName = "dbquery";
End
Directory gid_Dir_Share_Config_Sofficecfg_Dbquery_Menubar
ParentID = gid_Dir_Share_Config_Sofficecfg_Dbquery;
DosName = "menubar";
End
Directory gid_Dir_Share_Config_Sofficecfg_Dbbrowser
ParentID = gid_Dir_Share_Config_Sofficecfg;
DosName = "dbbrowser";
End
Directory gid_Dir_Share_Config_Sofficecfg_Dbbrowser_Menubar
ParentID = gid_Dir_Share_Config_Sofficecfg_Dbbrowser;
DosName = "menubar";
End
Directory gid_Dir_Share_Config_Sofficecfg_Dbapp
ParentID = gid_Dir_Share_Config_Sofficecfg;
DosName = "dbapp";
End
Directory gid_Dir_Share_Config_Sofficecfg_Dbapp_Menubar
ParentID = gid_Dir_Share_Config_Sofficecfg_Dbapp;
DosName = "menubar";
End
Directory gid_Dir_Share_Config_Sofficecfg_Dbrelation
ParentID = gid_Dir_Share_Config_Sofficecfg;
DosName = "dbrelation";
End
Directory gid_Dir_Share_Config_Sofficecfg_Dbrelation_Menubar
ParentID = gid_Dir_Share_Config_Sofficecfg_Dbrelation;
DosName = "menubar";
End
Directory gid_Dir_Share_Config_Sofficecfg_Dbtable
ParentID = gid_Dir_Share_Config_Sofficecfg;
DosName = "dbtable";
End
Directory gid_Dir_Share_Config_Sofficecfg_Dbtable_Menubar
ParentID = gid_Dir_Share_Config_Sofficecfg_Dbtable;
DosName = "menubar";
End
Directory gid_Dir_Share_Config_Sofficecfg_Sbibliography
ParentID = gid_Dir_Share_Config_Sofficecfg;
DosName = "sbibliography";
End
Directory gid_Dir_Share_Config_Sofficecfg_Sbibliography_Menubar
ParentID = gid_Dir_Share_Config_Sofficecfg_Sbibliography;
DosName = "menubar";
End
Directory gid_Dir_Share_Config_Sofficecfg_Scalc
ParentID = gid_Dir_Share_Config_Sofficecfg;
DosName = "scalc";
End
Directory gid_Dir_Share_Config_Sofficecfg_Scalc_Menubar
ParentID = gid_Dir_Share_Config_Sofficecfg_Scalc;
DosName = "menubar";
End
Directory gid_Dir_Share_Config_Sofficecfg_Schart
ParentID = gid_Dir_Share_Config_Sofficecfg;
DosName = "schart";
End
Directory gid_Dir_Share_Config_Sofficecfg_Schart_Menubar
ParentID = gid_Dir_Share_Config_Sofficecfg_Schart;
DosName = "menubar";
End
Directory gid_Dir_Share_Config_Sofficecfg_Sdraw
ParentID = gid_Dir_Share_Config_Sofficecfg;
DosName = "sdraw";
End
Directory gid_Dir_Share_Config_Sofficecfg_Sdraw_Menubar
ParentID = gid_Dir_Share_Config_Sofficecfg_Sdraw;
DosName = "menubar";
End
Directory gid_Dir_Share_Config_Sofficecfg_Sglobal
ParentID = gid_Dir_Share_Config_Sofficecfg;
DosName = "sglobal";
End
Directory gid_Dir_Share_Config_Sofficecfg_Sglobal_Menubar
ParentID = gid_Dir_Share_Config_Sofficecfg_Sglobal;
DosName = "menubar";
End
Directory gid_Dir_Share_Config_Sofficecfg_Simpress
ParentID = gid_Dir_Share_Config_Sofficecfg;
DosName = "simpress";
End
Directory gid_Dir_Share_Config_Sofficecfg_Simpress_Menubar
ParentID = gid_Dir_Share_Config_Sofficecfg_Simpress;
DosName = "menubar";
End
Directory gid_Dir_Share_Config_Sofficecfg_Smath
ParentID = gid_Dir_Share_Config_Sofficecfg;
DosName = "smath";
End
Directory gid_Dir_Share_Config_Sofficecfg_Smath_Menubar
ParentID = gid_Dir_Share_Config_Sofficecfg_Smath;
DosName = "menubar";
End
Directory gid_Dir_Share_Config_Sofficecfg_Startmodule
ParentID = gid_Dir_Share_Config_Sofficecfg;
DosName = "StartModule";
End
Directory gid_Dir_Share_Config_Sofficecfg_Startmodule_Menubar
ParentID = gid_Dir_Share_Config_Sofficecfg_Startmodule;
DosName = "menubar";
End
Directory gid_Dir_Share_Config_Sofficecfg_Sweb
ParentID = gid_Dir_Share_Config_Sofficecfg;
DosName = "sweb";
End
Directory gid_Dir_Share_Config_Sofficecfg_Sweb_Menubar
ParentID = gid_Dir_Share_Config_Sofficecfg_Sweb;
DosName = "menubar";
End
Directory gid_Dir_Share_Config_Sofficecfg_Swriter
ParentID = gid_Dir_Share_Config_Sofficecfg;
DosName = "swriter";
End
Directory gid_Dir_Share_Config_Sofficecfg_Swriter_Menubar
ParentID = gid_Dir_Share_Config_Sofficecfg_Swriter;
DosName = "menubar";
End
Directory gid_Dir_Share_Registry
ParentID = gid_Dir_Share;
DosName = "registry";
End
Directory gid_Dir_Share_Registry_Res
ParentID = gid_Dir_Share_Registry;
HostName = "res";
End
Directory gid_Dir_Autotext
ParentID = gid_Dir_Share;
DosName = "autotext";
End
Directory gid_Dir_Autotext_Language
ParentID = gid_Dir_Autotext;
DIR_ISOLANGUAGE_ALL_LANG_2;
End
Directory gid_Dir_Share_Autocorr
ParentID = gid_Dir_Share;
DosName = "autocorr";
Styles = (WORKSTATION, CREATE);
End
Directory gid_Dir_Basic
ParentID = gid_Dir_Share;
DosName = "basic";
End
Directory gid_Dir_Basic_Euro
ParentID = gid_Dir_Basic;
DosName = "Euro";
End
Directory gid_Dir_Basic_Gimmicks
ParentID = gid_Dir_Basic;
DosName = "Gimmicks";
End
Directory gid_Dir_Basic_Depot
ParentID = gid_Dir_Basic;
DosName = "Depot";
End
Directory gid_Dir_Basic_Schedule
ParentID = gid_Dir_Basic;
DosName = "Schedule";
End
Directory gid_Dir_Basic_Template
ParentID = gid_Dir_Basic;
DosName = "Template";
End
Directory gid_Dir_Basic_Tools
ParentID = gid_Dir_Basic;
DosName = "Tools";
End
Directory gid_Dir_Basic_Importwiz
ParentID = gid_Dir_Basic;
DosName = "ImportWizard";
End
Directory gid_Dir_Basic_Formwiz
ParentID = gid_Dir_Basic;
DosName = "FormWizard";
End
Directory gid_Dir_Basic_Webwiz
ParentID = gid_Dir_Basic;
DosName = "WebWizard";
End
Directory gid_Dir_Basic_Tutorials
ParentID = gid_Dir_Basic;
DosName = "Tutorials";
End
Directory gid_Dir_Basic_Scriptbindinglib
ParentID = gid_Dir_Basic;
DosName = "ScriptBindingLibrary";
End
Directory gid_Dir_Share_Scripts
ParentID = gid_Dir_Share;
DosName = "Scripts";
End
Directory gid_Dir_Share_Dict
ParentID = gid_Dir_Share;
DosName = "dict";
End
Directory gid_Dir_Config
ParentID = gid_Dir_Share;
DosName = "config";
End
Directory gid_Dir_Config_Language
ParentID = gid_Dir_Config;
DIR_ISOLANGUAGE_ALL_LANG_2;
End
Directory gid_Dir_Share_Config_Help
ParentID = gid_Dir_Config;
DosName = "help";
End
Directory gid_Dir_Config_More
ParentID = gid_Dir_Config;
DosName = "more";
End
Directory gid_Dir_Config_Start
ParentID = gid_Dir_Config;
DosName = "start";
End
Directory gid_Dir_Config_Tasks
ParentID = gid_Dir_Config;
DosName = "tasks";
End
Directory gid_Dir_Config_Settings
ParentID = gid_Dir_Config;
DosName = "settings";
End
Directory gid_Dir_Config_Symbol
ParentID = gid_Dir_Config;
DosName = "symbol";
End
Directory gid_Dir_Config_Webcast
ParentID = gid_Dir_Config;
DosName = "webcast";
End
Directory gid_Dir_Gallery
ParentID = gid_Dir_Share;
DosName = "gallery";
End
Directory gid_Dir_Gallery_Arrows
ParentID = gid_Dir_Gallery;
DosName = "arrows";
End
Directory gid_Dir_Gallery_Balloons
ParentID = gid_Dir_Gallery;
DosName = "balloons";
End
Directory gid_Dir_Gallery_Calendar
ParentID = gid_Dir_Gallery;
DosName = "calendar";
End
Directory gid_Dir_Gallery_Communic
ParentID = gid_Dir_Gallery;
DosName = "communic";
End
Directory gid_Dir_Gallery_Computer
ParentID = gid_Dir_Gallery;
DosName = "computer";
End
Directory gid_Dir_Gallery_Emoticons
ParentID = gid_Dir_Gallery;
DosName = "emoticons";
End
Directory gid_Dir_Gallery_Finances
ParentID = gid_Dir_Gallery;
DosName = "finances";
End
Directory gid_Dir_Gallery_Keyboard
ParentID = gid_Dir_Gallery;
DosName = "keyboard";
End
Directory gid_Dir_Gallery_Navi_2d
ParentID = gid_Dir_Gallery;
DosName = "navi-2d";
End
Directory gid_Dir_Gallery_Officeart
ParentID = gid_Dir_Gallery;
DosName = "officeart";
End
Directory gid_Dir_Gallery_People
ParentID = gid_Dir_Gallery;
DosName = "people";
End
Directory gid_Dir_Gallery_Time
ParentID = gid_Dir_Gallery;
DosName = "time";
End
Directory gid_Dir_Gallery_Clipart
ParentID = gid_Dir_Gallery;
DosName = "clipart";
End
Directory gid_Dir_Gallery_Bullets
ParentID = gid_Dir_Gallery;
DosName = "bullets";
End
Directory gid_Dir_Gallery_Flags
ParentID = gid_Dir_Gallery;
DosName = "flags";
End
Directory gid_Dir_Gallery_Htmlexpo
ParentID = gid_Dir_Gallery;
DosName = "htmlexpo";
End
Directory gid_Dir_Gallery_Photo
ParentID = gid_Dir_Gallery;
DosName = "photos";
End
Directory gid_Dir_Gallery_Clima
ParentID = gid_Dir_Gallery;
DosName = "clima";
End
Directory gid_Dir_Gallery_Education
ParentID = gid_Dir_Gallery;
DosName = "education";
End
Directory gid_Dir_Gallery_Trouble
ParentID = gid_Dir_Gallery;
DosName = "troubleshooting";
End
Directory gid_Dir_Gallery_Screenbeans
ParentID = gid_Dir_Gallery;
DosName = "screenbeans";
End
Directory gid_Dir_Gallery_Rulers
ParentID = gid_Dir_Gallery;
DosName = "rulers";
End
Directory gid_Dir_Gallery_Sounds
ParentID = gid_Dir_Gallery;
DosName = "sounds";
End
Directory gid_Dir_Gallery_Surface
ParentID = gid_Dir_Gallery;
DosName = "surface";
End
Directory gid_Dir_Gallery_Symbols
ParentID = gid_Dir_Gallery;
DosName = "symbols";
End
Directory gid_Dir_Gallery_Wwwanim
ParentID = gid_Dir_Gallery;
DosName = "www-anim";
End
Directory gid_Dir_Gallery_Wwwback
ParentID = gid_Dir_Gallery;
DosName = "www-back";
End
Directory gid_Dir_Gallery_Wwwgraf
ParentID = gid_Dir_Gallery;
DosName = "www-graf";
End
Directory gid_Dir_Template
ParentID = gid_Dir_Share;
DosName = "template";
End
Directory gid_Dir_Share_Template_Wizard
ParentID = gid_Dir_Template;
DosName = "wizard";
End
Directory gid_Dir_Share_Template_Wizard_Letter
ParentID = gid_Dir_Share_Template_Wizard;
DosName = "letter";
End
Directory gid_Dir_Template_Language
ParentID = gid_Dir_Template;
DIR_ISOLANGUAGE_ALL_LANG_2;
End
Directory gid_Dir_Template_Educate
ParentID = gid_Dir_Template_Language;
DIR_IDENT_ALL_LANG(educate);
End
Directory gid_Dir_Template_Finance
ParentID = gid_Dir_Template_Language;
DIR_IDENT_ALL_LANG(finance);
End
Directory gid_Dir_Template_Forms
ParentID = gid_Dir_Template_Language;
DIR_IDENT_ALL_LANG(forms);
End
Directory gid_Dir_Template_Layout
ParentID = gid_Dir_Template_Language;
DIR_IDENT_ALL_LANG(layout);
End
Directory gid_Dir_Template_Misc
ParentID = gid_Dir_Template_Language;
DIR_IDENT_ALL_LANG(misc);
End
Directory gid_Dir_Template_Officorr
ParentID = gid_Dir_Template_Language;
DIR_IDENT_ALL_LANG(officorr);
End
Directory gid_Dir_Template_Offimisc
ParentID = gid_Dir_Template_Language;
DIR_IDENT_ALL_LANG(offimisc);
End
Directory gid_Dir_Template_Personal
ParentID = gid_Dir_Template_Language;
DIR_IDENT_ALL_LANG(personal);
End
Directory gid_Dir_Template_Presnt
ParentID = gid_Dir_Template_Language;
DIR_IDENT_ALL_LANG(presnt);
End
Directory gid_Dir_Template_Wizard
ParentID = gid_Dir_Template_Language;
DIR_IDENT_ALL_LANG(wizard);
End
Directory gid_Dir_Template_Wizard_Bitmap
ParentID = gid_Dir_Template_Wizard;
DIR_IDENT_ALL_LANG(bitmap);
End
Directory gid_Dir_Template_Wizard_Web
ParentID = gid_Dir_Template_Wizard;
DIR_IDENT_ALL_LANG(web);
End
Directory gid_Dir_Template_Wizard_Report
ParentID = gid_Dir_Template_Wizard;
DIR_IDENT_ALL_LANG(report);
End
Directory gid_Dir_Template_Wizard_Letter
ParentID = gid_Dir_Template_Wizard;
DIR_IDENT_ALL_LANG(letter);
End
Directory gid_Dir_Template_Wizard_Fax
ParentID = gid_Dir_Template_Wizard;
DIR_IDENT_ALL_LANG(fax);
End
Directory gid_Dir_Template_Wizard_Agenda
ParentID = gid_Dir_Template_Wizard;
DIR_IDENT_ALL_LANG(agenda);
End
Directory gid_Dir_Template_Wizard_Styles
ParentID = gid_Dir_Template_Wizard;
DIR_IDENT_ALL_LANG(styles);
End
Directory gid_Dir_Template_Internal
ParentID = gid_Dir_Template_Language;
DIR_IDENT_ALL_LANG(internal);
End
Directory gid_Dir_Share_Database
ParentID = gid_Dir_Share;
DosName = "database";
End
Directory gid_Dir_Share_Database_Language
ParentID = gid_Dir_Share_Database;
DIR_ISOLANGUAGE_ALL_LANG_2;
End
Directory gid_Dir_Explorer
ParentID = gid_Dir_Share;
DosName = "explorer";
End
Directory gid_Dir_Bookmark
ParentID = gid_Dir_Share;
DosName = "bookmark";
End
Directory gid_Dir_Bookmark_Language
ParentID = gid_Dir_Bookmark;
DIR_ISOLANGUAGE_ALL_LANG_2;
End
Directory gid_Dir_Bookmark_Info
ParentID = gid_Dir_Bookmark_Language;
ALL_LANG(DosName, STR_DIR_INFO);
End
Directory gid_Dir_Bookmark_Internet
ParentID = gid_Dir_Bookmark_Language;
ALL_LANG(DosName, STR_DIR_INTERNET);
End
Directory gid_Dir_Bookmark_Java
ParentID = gid_Dir_Bookmark_Language;
ALL_LANG(DosName, STR_DIR_JAVA);
End
Directory gid_Dir_Bookmark_Freizeit
ParentID = gid_Dir_Bookmark_Language;
ALL_LANG(DosName, STR_DIR_FREIZEIT);
End
Directory gid_Dir_Bookmark_Starone
ParentID = gid_Dir_Bookmark_Language;
ALL_LANG(DosName, STR_DIR_STARONE);
End
Directory gid_Dir_Bookmark_Tourismus
ParentID = gid_Dir_Bookmark_Language;
ALL_LANG(DosName, STR_DIR_TOURISMUS);
End
Directory gid_Dir_Palmpilot
ParentID = gid_Dir_Share;
DosName = "palmpilot";
End
Directory gid_Dir_Samples
ParentID = gid_Dir_Share;
DosName = "samples";
End
Directory gid_Dir_Samples_Language
ParentID = gid_Dir_Samples;
DIR_ISOLANGUAGE_ALL_LANG_2;
Styles = (CREATE);
End
Directory gid_Dir_Samples_Drawings
ParentID = gid_Dir_Samples_Language;
DIR_IDENT_ALL_LANG(drawings);
End
Directory gid_Dir_Samples_Formulas
ParentID = gid_Dir_Samples_Language;
DIR_IDENT_ALL_LANG(formulas);
End
Directory gid_Dir_Samples_Presentations
ParentID = gid_Dir_Samples_Language;
DIR_IDENT_ALL_LANG(presentations);
End
Directory gid_Dir_Samples_Spreadsheets
ParentID = gid_Dir_Samples_Language;
DIR_IDENT_ALL_LANG(spreadsheets);
End
Directory gid_Dir_Samples_Texts
ParentID = gid_Dir_Samples_Language;
DIR_IDENT_ALL_LANG(texts);
End
Directory gid_Dir_Samples_Texts_Kapitel
ParentID = gid_Dir_Samples_Texts;
ALL_LANG(DosName, STR_DIR_KAPITEL);
End
Directory gid_Dir_Samples_Databases
ParentID = gid_Dir_Samples_Language;
DIR_IDENT_ALL_LANG(databases);
End
Directory gid_Dir_Samples_Databases_Dateien
ParentID = gid_Dir_Samples_Databases;
ALL_LANG(DosName, STR_DIR_DATEIEN);
End
Directory gid_Dir_Wordbook
ParentID = gid_Dir_Share;
DosName = "wordbook";
End
Directory gid_Dir_Wordbook_Language
ParentID = gid_Dir_Wordbook;
DIR_ISOLANGUAGE_ALL_LANG_2;
End
Directory gid_Dir_Share_Plugin
ParentID = gid_Dir_Share;
DosName = "plugin";
End
Directory gid_Dir_Share_Fingerprint
ParentID = gid_Dir_Share;
DosName = "fingerprint";
End
Directory gid_Dir_Basis_Sdk
#if defined MACOSX
ParentID = gid_Brand_Dir_BasisLink;
#else
ParentID = gid_Dir_Ooo_Basis;
#endif
DosName = "sdk";
End
Directory gid_Dir_Help
#if defined MACOSX
ParentID = gid_Brand_Dir_BasisLink;
#else
ParentID = gid_Dir_Ooo_Basis;
#endif
DosName = "help";
End
Directory gid_Dir_Help_Isolanguage
ParentID = gid_Dir_Help;
DIR_ISOLANGUAGE_ALL_LANG;
End
#ifdef UNX
Directory gid_Dir_User_Psprint
ParentID = gid_Dir_User;
DosName = "psprint";
Styles = (CREATE);
End
#endif
#ifdef UNX
Directory gid_Dir_User_Psprint_Driver
ParentID = gid_Dir_User_Psprint;
DosName = "driver";
Styles = (CREATE);
End
#endif
#ifdef UNX
Directory gid_Dir_User_Psprint_Fontmetric
ParentID = gid_Dir_User_Psprint;
DosName = "fontmetric";
Styles = (CREATE);
End
#endif
#ifdef UNX
Directory gid_Dir_Fonts_Truetype
ParentID = gid_Dir_Fonts;
DosName = "truetype";
End
#endif
#ifdef UNX
Directory gid_Dir_Fonts_Truetypeserver
ParentID = gid_Dir_Fonts;
DosName = "serverfonts";
End
#endif
#ifdef UNX
Directory gid_Dir_Fonts_75dpi
ParentID = gid_Dir_Fonts;
DosName = "75dpi";
End
#endif
#ifdef UNX
Directory gid_Dir_Fonts_75dpi_Bdf
ParentID = gid_Dir_Fonts_75dpi;
DosName = "bdf";
End
#endif
#ifdef UNX
Directory gid_Dir_Fonts_Type1
ParentID = gid_Dir_Fonts;
DosName = "type1";
End
#endif
#ifdef UNX
Directory gid_Dir_Psprint
ParentID = gid_Dir_Share;
DosName = "psprint";
End
#endif
#ifdef UNX
Directory gid_Dir_Psprint_Driver
ParentID = gid_Dir_Psprint;
DosName = "driver";
End
#endif
#ifdef UNX
Directory gid_Dir_Psprint_Fontmetric
ParentID = gid_Dir_Psprint;
DosName = "fontmetric";
End
#endif
#ifdef UNX
Directory gid_Dir_Share_Icons
ParentID = gid_Dir_Share;
DosName = "icons";
End
#endif
|