language.h
来自「开放源码的编译器open watcom 1.6.0版的源代码」· C头文件 代码 · 共 27 行
H
27 行
#ifndef __LANGUAGE_H
#define __LANGUAGE_H
/*
* language.h
* Include file for WatTCP foreign language translation facility.
* Based on idea from PGP, but totally rewritten (using flex)
*
* Strings with _LANG() around them are found by the `mklang' tool and
* put into a text file to be translated into foreign language at run-time.
*/
#if defined(USE_LANGUAGE)
extern void lang_init (const char *value);
extern const char *_LANG (const char *str);
#else
#define _LANG(str) str
#endif
/*
* __LANG() must be used for array string constants. This macro is used by
* the `mklang' to generate an entry in the language database.
*/
#define __LANG(str) str
#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?