Skip to content

Latest commit

 

History

History
60 lines (53 loc) · 1.16 KB

File metadata and controls

60 lines (53 loc) · 1.16 KB
title ALIAS (MASM) | Microsoft Docs
ms.custom
ms.date 11/04/2016
ms.reviewer
ms.suite
ms.technology
cpp-tools
ms.tgt_pltfrm
ms.topic article
f1_keywords
Alias
dev_langs
C++
helpviewer_keywords
ALIAS directive
ms.assetid d9725c49-58de-41da-ab01-b06a56cf5cf2
caps.latest.revision 6
author corob-msft
ms.author corob
manager ghogen
translation.priority.ht
cs-cz
de-de
es-es
fr-fr
it-it
ja-jp
ko-kr
pl-pl
pt-br
ru-ru
tr-tr
zh-cn
zh-tw

ALIAS (MASM)

The ALIAS directive creates an alternate name for a function. This lets you create multiple names for a function, or create libraries that allow the linker (LINK.exe) to map an old function to a new function.

Syntax

  
ALIAS  <  
alias  
> = <  
actual-name  
>  
  

Parameters

actual-name
The actual name of the function or procedure. The angle brackets are required.

alias
The alternate or alias name. The angle brackets are required.

See Also

Directives Reference