ALIAS (MASM)

 

The new home for Visual Studio documentation is Visual Studio 2017 Documentation on docs.microsoft.com.

The latest version of this topic can be found at 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