diff options
author | Jörg Frings-Fürst <debian@jff-webhosting.net> | 2016-08-31 04:56:51 +0200 |
---|---|---|
committer | Jörg Frings-Fürst <debian@jff-webhosting.net> | 2016-08-31 04:56:51 +0200 |
commit | 7686bc45dedb8eaed56afdcc7ef51150f4583f35 (patch) | |
tree | 1cc6fe9f5dcd9e0ccceea904e0aab967fdc35eb4 /vapi/LConv.vapi | |
parent | 6df261f4ed647aed6d46977af12899e94d1c8e14 (diff) | |
parent | 023815361486c0b5696d91326366d62e1828b025 (diff) |
Merge tag 'upstream/0.23.6'
Upstream version 0.23.6
Diffstat (limited to 'vapi/LConv.vapi')
-rw-r--r-- | vapi/LConv.vapi | 45 |
1 files changed, 0 insertions, 45 deletions
diff --git a/vapi/LConv.vapi b/vapi/LConv.vapi deleted file mode 100644 index 779ffd0..0000000 --- a/vapi/LConv.vapi +++ /dev/null @@ -1,45 +0,0 @@ -/* Copyright 2016 Software Freedom Conservancy Inc. - * - * 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(); - } -} - |