0610c02409d23426bef1f91c1216cfe4d3d66533
[framework/uifw/ise-default.git] / src / include / strtbl.h
1 /*
2  * Copyright 2012  Samsung Electronics Co., Ltd
3  *
4  * Licensed under the Flora License, Version 1.0 (the License);
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *     http://www.tizenopensource.org/license
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an AS IS BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17
18
19 #ifndef __STRING_TABLE_H__
20 #define __STRING_TABLE_H__
21
22 #include <libintl.h>
23
24 #define _(str) gettext(str)
25 #define gettext_noop(str) (str)
26 #define N_(str) gettext_noop(str)
27
28 struct _tc { /* text class */
29         char *name; /* text class name */
30         int size; /* font size */
31 };
32
33 struct _ts { /* text set */
34         char *name; /* part name */
35         char *msgid; /* message ID */
36 };
37
38 #endif /* __STRING_TABLE_H__ */