13 lines
180 B
C
13 lines
180 B
C
|
#ifndef __LANGUAGE_H_
|
||
|
#define __LANGUAGE_H_
|
||
|
|
||
|
#define LANGUAGE_COFIG 0
|
||
|
|
||
|
#if LANGUAGE_COFIG
|
||
|
#include "language_cn.h"
|
||
|
#else
|
||
|
#include "language_en.h"
|
||
|
#endif
|
||
|
|
||
|
#endif
|