table/currency.h
author dominik
Wed, 22 Dec 2004 13:19:26 +0000
changeset 759 6d087784a08a
child 762 7afe6c8554cb
permissions -rw-r--r--
(svn r1215) Feature: You can now make a custom currency by chosing "Custom..."
759
6d087784a08a (svn r1215) Feature: You can now make a custom currency by chosing "Custom..."
dominik
parents:
diff changeset
     1
6d087784a08a (svn r1215) Feature: You can now make a custom currency by chosing "Custom..."
dominik
parents:
diff changeset
     2
CurrencySpec _currency_specs[] = {
6d087784a08a (svn r1215) Feature: You can now make a custom currency by chosing "Custom..."
dominik
parents:
diff changeset
     3
{ 1,   ',', CF_NOEURO,              "\xA3", "" },     // british pounds
6d087784a08a (svn r1215) Feature: You can now make a custom currency by chosing "Custom..."
dominik
parents:
diff changeset
     4
{ 2,   ',', CF_NOEURO,              "$",    "" },     // us dollars
6d087784a08a (svn r1215) Feature: You can now make a custom currency by chosing "Custom..."
dominik
parents:
diff changeset
     5
{ 10,  '.', 2002, "FF ",  "" },     // french francs
6d087784a08a (svn r1215) Feature: You can now make a custom currency by chosing "Custom..."
dominik
parents:
diff changeset
     6
{ 4,   '.', 2002, "DM ",  "" },     // deutsche mark
6d087784a08a (svn r1215) Feature: You can now make a custom currency by chosing "Custom..."
dominik
parents:
diff changeset
     7
{ 200, ',', CF_NOEURO,              "\xA5", "" },     // yen
6d087784a08a (svn r1215) Feature: You can now make a custom currency by chosing "Custom..."
dominik
parents:
diff changeset
     8
{ 200, '.', 2002, "Pt",   "" },     // spanish pesetas
6d087784a08a (svn r1215) Feature: You can now make a custom currency by chosing "Custom..."
dominik
parents:
diff changeset
     9
{ 376, ',', 2002, "",     " Ft" },
6d087784a08a (svn r1215) Feature: You can now make a custom currency by chosing "Custom..."
dominik
parents:
diff changeset
    10
{ 6,   ' ', CF_NOEURO,              "",     " zl" },
6d087784a08a (svn r1215) Feature: You can now make a custom currency by chosing "Custom..."
dominik
parents:
diff changeset
    11
{ 19,  ',', 2002, "ATS ", "" },
6d087784a08a (svn r1215) Feature: You can now make a custom currency by chosing "Custom..."
dominik
parents:
diff changeset
    12
{ 57,  ',', 2002, "BEF ", "" },
6d087784a08a (svn r1215) Feature: You can now make a custom currency by chosing "Custom..."
dominik
parents:
diff changeset
    13
{ 10,  '.', CF_NOEURO,              "",     " kr" },
6d087784a08a (svn r1215) Feature: You can now make a custom currency by chosing "Custom..."
dominik
parents:
diff changeset
    14
{ 8,   ',', 2002, "FIM ", "" },
6d087784a08a (svn r1215) Feature: You can now make a custom currency by chosing "Custom..."
dominik
parents:
diff changeset
    15
{ 480, ',', 2002, "GRD ", "" },
6d087784a08a (svn r1215) Feature: You can now make a custom currency by chosing "Custom..."
dominik
parents:
diff changeset
    16
{ 2,   ',', CF_NOEURO,              "CHF ", "" },
6d087784a08a (svn r1215) Feature: You can now make a custom currency by chosing "Custom..."
dominik
parents:
diff changeset
    17
{ 3,   ',', 2002, "NLG ", "" },
6d087784a08a (svn r1215) Feature: You can now make a custom currency by chosing "Custom..."
dominik
parents:
diff changeset
    18
{ 2730,',', 2002, "ITL ", "" },
6d087784a08a (svn r1215) Feature: You can now make a custom currency by chosing "Custom..."
dominik
parents:
diff changeset
    19
{ 13,  '.', CF_NOEURO,              "",     " kr" },
6d087784a08a (svn r1215) Feature: You can now make a custom currency by chosing "Custom..."
dominik
parents:
diff changeset
    20
{ 5,   ' ', CF_NOEURO,              "",     " rur" },
6d087784a08a (svn r1215) Feature: You can now make a custom currency by chosing "Custom..."
dominik
parents:
diff changeset
    21
{ 50,  ',', CF_NOEURO,              "",     " Kc" },
6d087784a08a (svn r1215) Feature: You can now make a custom currency by chosing "Custom..."
dominik
parents:
diff changeset
    22
{ 130, '.', CF_NOEURO,              "",     " kr" },
6d087784a08a (svn r1215) Feature: You can now make a custom currency by chosing "Custom..."
dominik
parents:
diff changeset
    23
{ 11,  '.', CF_NOEURO,              "",     " kr" },
6d087784a08a (svn r1215) Feature: You can now make a custom currency by chosing "Custom..."
dominik
parents:
diff changeset
    24
{ 2,   ',', CF_ISEURO,      "¤",    "" },
6d087784a08a (svn r1215) Feature: You can now make a custom currency by chosing "Custom..."
dominik
parents:
diff changeset
    25
{ 6,   '.', CF_NOEURO,              "",     " Lei" },
6d087784a08a (svn r1215) Feature: You can now make a custom currency by chosing "Custom..."
dominik
parents:
diff changeset
    26
};