allocate
Visual Studio 2015
The new home for Visual Studio documentation is Visual Studio 2017 Documentation on docs.microsoft.com.
The latest version of this topic can be found at allocate.
Microsoft Specific**
The allocate declaration specifier names a data segment in which the data item will be allocated.
__declspec(allocate("
segname
")) declarator
The name segname must be declared using one of the following pragmas:
// allocate.cpp
#pragma section("mycode", read)
__declspec(allocate("mycode")) int i = 0;
int main() {
}
END Microsoft Specific
Show: