Skip to content

Latest commit

 

History

History
40 lines (34 loc) · 1.4 KB

File metadata and controls

40 lines (34 loc) · 1.4 KB
title Microsoft Extensions | Microsoft Docs
ms.custom
ms.date 11/04/2016
ms.technology
cpp-language
ms.topic language-reference
dev_langs
C++
helpviewer_keywords
Microsoft extensions to C/C++
ms.assetid 68654516-24ef-4f33-aae2-175f86cc1979
author mikeblome
ms.author mblome
ms.workload
cplusplus

Microsoft Extensions

asm-statement:
    __asm assembly-instruction ;opt
    __asm { assembly-instruction-list } ;opt

assembly-instruction-list:
    assembly-instruction ;opt
    assembly-instruction ; assembly-instruction-list ;opt

ms-modifier-list:
    ms-modifier ms-modifier-listopt

ms-modifier:
    __cdecl
    __fastcall
    __stdcall
    __syscall (reserved for future implementations)
    __oldcall (reserved for future implementations)
    __unaligned (reserved for future implementations)
    based-modifier

based-modifier:
    __based ( based-type )

based-type:
    name