菜单和其他资源) (注释

RC 支持单行注释和块注释的 C 样式语法。 单行注释以 //) (两个正斜杠开头,并运行到行尾。 下面是资源语句后跟单行注释的示例。

NewCursor  CURSOR  NEW.CUR  // a new cursor for the application.

阻止注释以 /*) (开头分隔符开头, (*/) 运行到结束分隔符。 注释不嵌套。 下面是 .rc 文件开头的块注释示例。

/* 
    Resources.Rc

    Contains the resource definitions for the application.
    Control identifiers are defined in Resources.h.
*/

#include "resources.h"
//...