共用方式為


allocate

Microsoft 特定的

allocate 宣告指定名稱會為將配置之資料項目的資料區段命名。

__declspec(allocate("segname")) declarator

備註

名稱 segname 必須使用下列其中一種 pragmas 進行宣告:

範例

// allocate.cpp
#pragma section("mycode", read)
__declspec(allocate("mycode"))  int i = 0;

int main() {
}

END Microsoft 特定的

請參閱

參考

__declspec

C++ 關鍵字