Skip to content

Latest commit

 

History

History
61 lines (46 loc) · 1.27 KB

allocate.md

File metadata and controls

61 lines (46 loc) · 1.27 KB
title ms.custom ms.date ms.reviewer ms.suite ms.technology ms.tgt_pltfrm ms.topic f1_keywords dev_langs helpviewer_keywords ms.assetid caps.latest.revision author ms.author manager
allocate | Microsoft Docs
11/04/2016
cpp-language
language-reference
allocate_cpp
C++
__declspec keyword [C++], allocate
allocate __declspec keyword
67828b31-de60-4c0e-b0a6-ef3aab22641d
6
mikeblome
mblome
ghogen

allocate

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

See Also

__declspec
Keywords