Skip to content

Latest commit

 

History

History
28 lines (20 loc) · 778 Bytes

alias-masm.md

File metadata and controls

28 lines (20 loc) · 778 Bytes
description title ms.date f1_keywords helpviewer_keywords ms.assetid
Learn more about: ALIAS
ALIAS (MASM)
12/17/2019
Alias
ALIAS directive
d9725c49-58de-41da-ab01-b06a56cf5cf2

ALIAS

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
MASM BNF Grammar