閱讀英文

共用方式為


批註 (功能表和其他資源)

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"
//...