diff options
author | Jörg Frings-Fürst <debian@jff-webhosting.net> | 2014-07-23 09:06:59 +0200 |
---|---|---|
committer | Jörg Frings-Fürst <debian@jff-webhosting.net> | 2014-07-23 09:06:59 +0200 |
commit | 4ea2cc3bd4a7d9b1c54a9d33e6a1cf82e7c8c21d (patch) | |
tree | d2e54377d14d604356c86862a326f64ae64dadd6 /vapi/LConv.vapi |
Imported Upstream version 0.18.1upstream/0.18.1
Diffstat (limited to 'vapi/LConv.vapi')
-rw-r--r-- | vapi/LConv.vapi | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/vapi/LConv.vapi b/vapi/LConv.vapi new file mode 100644 index 0000000..35de9f5 --- /dev/null +++ b/vapi/LConv.vapi @@ -0,0 +1,45 @@ +/* Copyright 2010-2014 Yorba Foundation + * + * This software is licensed under the GNU LGPL (version 2.1 or later). + * See the COPYING file in this distribution. + */ +namespace GLib { + [Compact] + [CCode (cheader_filename = "locale.h", cname = "struct lconv")] + public class LConv { + public string decimal_point; + public string thousands_sep; + public string grouping; + + public string int_curr_symbol; + public string currency_symbol; + public string mon_decimal_point; + public string mon_thousands_sep; + public string mon_grouping; + public string positive_sign; + public string negative_sign; + public char int_frac_digits; + public char frac_digits; + + public char p_cs_precedes; + public char p_sep_by_space; + public char n_cs_precedes; + public char n_sep_by_space; + + public char p_sign_posn; + public char n_sign_posn; + + public char int_p_cs_precedes; + public char int_p_sep_by_space; + public char int_n_cs_precedes; + public char int_n_sep_by_space; + public char int_p_sign_posn; + public char int_n_sign_posn; + } + + namespace Intl { + [CCode (cname = "localeconv", cheader_filename = "locale.h")] + public static unowned LConv localeconv(); + } +} + |