1 #ifndef __LANGUAGE_H_ 2 #define __LANGUAGE_H_ 3 4 #define LANGUAGE_COFIG 0 5 6 #if LANGUAGE_COFIG 7 #include "language_cn.h" 8 #else 9 #include "language_en.h" 10 #endif 11 12 #endif 13
1 #ifndef __LANGUAGE_H_ 2 #define __LANGUAGE_H_ 3 4 #define LANGUAGE_COFIG 0 5 6 #if LANGUAGE_COFIG 7 #include "language_cn.h" 8 #else 9 #include "language_en.h" 10 #endif 11 12 #endif 13