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
|
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=iso-8859-2">
<meta http-equiv="Content-language" content="pl">
<meta name="Author" content="W³odzimierz Macewicz">
</head>
<body>
<h4>Tablica struktur opisuj±cych jêzyki</h4>
Tablica zawiera struktury opisuj±ce definiowane jêzyki. Ostatnim
elementem tablicy <b>musi</b> byæ element
którego warto¶æ pola <code>id</code> wynosi <code>NULL</code>.
<pre>
Public struct _multilanguage multilanguage[] =
{
{
&us_day_name_ptr,
&us_mon_name_ptr,
&us_toascii_table,
&us_lower_table,
&us_upper_table,
&us_char_type,
&us_order_tbl,
0,
NULL,
"english",
"US english",
NULL
},
{
<a href=day.html>&pl_maz_day_name_ptr</a>,
<a href=mon.html>&pl_maz_mon_name_ptr</a>,
<a href=toascii.html>&pl_maz_toascii_table</a>,
<a href=lower.html>&pl_maz_lower_table</a>,
<a href=upper.html>&pl_maz_upper_table</a>,
<a href=typy.html>&pl_maz_char_type</a>,
<a href=order.html>&pl_maz_order_tbl</a>,
0,
<a href=decode.html>Decode_Number</a>,
<a href=id.html>"PL-mazowia"</a>,
<a href=name.html>"Polish mazowia"</a>,
<a href=spec.html>&maz_decode</a>
},
{
&pl_iso2_day_name_ptr,
&pl_iso2_mon_name_ptr,
&pl_iso2_toascii_table,
&pl_iso2_lower_table,
&pl_iso2_upper_table,
&pl_iso2_char_type,
&pl_iso2_order_tbl,
0,
Decode_Number,
"PL-latin2",
"Polish ISO-8859-2 (Latin2)",
&iso2_decode
},
{
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
0,
NULL,
NULL,
NULL,
NULL
}
};
</pre>
</body>
</html>
|