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