errmsg.rc
来自「开放源码的编译器open watcom 1.6.0版的源代码」· RC 代码 · 共 44 行
RC
44 行
#include "macro.h"
#include "wreslang.h"
#define MSG_LANG_BASE 0
#if _CPU == 8086
#include "errmsgi.rc"
#undef MSG_LANG_BASE
#define MSG_LANG_BASE (RLE_JAPANESE*MSG_LANG_SPACING)
#include "jerrmsgi.rc"
#elif _CPU == 386
#include "errmsg3.rc"
#undef MSG_LANG_BASE
#define MSG_LANG_BASE (RLE_JAPANESE*MSG_LANG_SPACING)
#include "jerrmsg3.rc"
#else
#include "errmsgr.rc"
#undef MSG_LANG_BASE
#define MSG_LANG_BASE (RLE_JAPANESE*MSG_LANG_SPACING)
#include "jerrmsgr.rc"
#endif
#if _CPU == 8086 || _CPU == 386
STRINGTABLE
BEGIN
#define _USE_RESOURCES_
#include "asmerr.h"
#undef pick
#define pick( code, string1, string2 ) \
(code+RLE_ENGLISH*MSG_LANG_SPACING), string1
#include "../h/asmshare.msg"
#undef pick
#define pick( code, string1, string2 ) \
(code+RLE_JAPANESE*MSG_LANG_SPACING), string2
#include "../h/asmshare.msg"
#undef pick
END
#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?