womp.rc
来自「开放源码的编译器open watcom 1.6.0版的源代码」· RC 代码 · 共 36 行
RC
36 行
/************************************************************************/
/* WOMP RESOURCE FILE */
/************************************************************************/
/*
* %c : char
* %s : string
* %x : 4-digit hex number
* %X : 8-digit hex number
* %1X, %2X : ordered %X
* %t : 2-digit hex number
* %u : integer
* %Z : message from 'system error' (see below)
*/
#include "wpmsg.h"
STRINGTABLE
BEGIN
#undef pick
#if defined( JAPANESE )
# define pick( code, string1, string2 ) code, string2
#else
# define pick( code, string1, string2 ) code, string1
#endif
#include "..\womp.msg"
#if defined( JAPANESE )
#include "usagej.rc"
#else
#include "usage.rc"
#endif
END
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?