Skip to content

Latest commit

 

History

History
42 lines (35 loc) · 992 Bytes

alias-masm.md

File metadata and controls

42 lines (35 loc) · 992 Bytes
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
ALIAS (MASM) | Microsoft Docs
11/04/2016
cpp-tools
article
Alias
C++
ALIAS directive
d9725c49-58de-41da-ab01-b06a56cf5cf2
6
corob-msft
corob
ghogen

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