description | title | ms.date | f1_keywords | helpviewer_keywords | ms.assetid | |||
---|---|---|---|---|---|---|---|---|
Learn more about: allocate |
allocate |
11/04/2016 |
|
|
67828b31-de60-4c0e-b0a6-ef3aab22641d |
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