1 /* xgettext Vala backend.
2    Copyright (C) 2002-2003, 2006, 2013-2014, 2018, 2020 Free Software Foundation, Inc.
3 
4    This program is free software: you can redistribute it and/or modify
5    it under the terms of the GNU General Public License as published by
6    the Free Software Foundation; either version 3 of the License, or
7    (at your option) any later version.
8 
9    This program is distributed in the hope that it will be useful,
10    but WITHOUT ANY WARRANTY; without even the implied warranty of
11    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12    GNU General Public License for more details.
13 
14    You should have received a copy of the GNU General Public License
15    along with this program.  If not, see <https://www.gnu.org/licenses/>.  */
16 
17 
18 #include <stdio.h>
19 
20 #include "message.h"
21 #include "xg-arglist-context.h"
22 
23 
24 #ifdef __cplusplus
25 extern "C" {
26 #endif
27 
28 
29 #define EXTENSIONS_VALA \
30   { "vala",        "Vala"   },                                        \
31 
32 #define SCANNERS_VALA \
33   { "Vala",       extract_vala, NULL,                                 \
34                   &flag_table_vala, &formatstring_c, NULL },          \
35 
36 /* Scan a Vala file and add its translatable strings to mdlp.  */
37 extern void extract_vala (FILE *fp, const char *real_filename,
38                           const char *logical_filename,
39                           flag_context_list_table_ty *flag_table,
40                           msgdomain_list_ty *mdlp);
41 
42 extern void x_vala_keyword (const char *keyword);
43 extern void x_vala_extract_all (void);
44 
45 extern void init_flag_table_vala (void);
46 
47 
48 #ifdef __cplusplus
49 }
50 #endif
51