summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--include/config.h8
-rw-r--r--include/pttstruct.h9
2 files changed, 17 insertions, 0 deletions
diff --git a/include/config.h b/include/config.h
index d44ce8a0..5f9a5a73 100644
--- a/include/config.h
+++ b/include/config.h
@@ -25,6 +25,14 @@
#define MAX_CPULOAD (70) /* CPU 最高load */
#endif
+#ifndef MAX_LANG
+#define MAX_LANG (1) /* 最多使用語言 */
+#endif
+
+#ifndef MAX_STRING
+#define MAX_STRING (8000) /* 系統最多使用字串 */
+#endif
+
#ifndef MAX_POST_MONEY /* 發表文章稿費的上限 */
#define MAX_POST_MONEY 100
#endif
diff --git a/include/pttstruct.h b/include/pttstruct.h
index 80cef86c..eafc8636 100644
--- a/include/pttstruct.h
+++ b/include/pttstruct.h
@@ -424,6 +424,15 @@ typedef struct {
time_t Fuptime;
time_t Ftouchtime;
int Fbusystate;
+
+#ifdef I18N
+ /* i18n(internationlization) */
+ char *i18nstrptr[MAX_LANG][MAX_STRING];
+ char i18nstrbody[16 * MAX_LANG * MAX_STRING];
+ /* Based on the statistis, we found the lengh of one string
+ is 16 bytes approximately.
+ */
+#endif
} SHM_t;
typedef struct {