Nóta
Teastaíonn údarú chun rochtain a fháil ar an leathanach seo. Is féidir leat triail a bhaint as shíniú isteach nó eolairí a athrú.
Teastaíonn údarú chun rochtain a fháil ar an leathanach seo. Is féidir leat triail a bhaint as eolairí a athrú.
Microsoft Specific
The allocate declaration specifier names a data segment in which the data item will be allocated.
Syntax
__declspec(allocate("segname))declarator
Remarks
The name segname must be declared using one of the following pragmas:
Example
// allocate.cpp
#pragma section("mycode", read)
__declspec(allocate("mycode")) int i = 0;
int main() {
}
END Microsoft Specific