Skip to content

Latest commit

 

History

History
28 lines (20 loc) · 778 Bytes

File metadata and controls

28 lines (20 loc) · 778 Bytes
description Learn more about: ALIAS
title ALIAS (MASM)
ms.date 12/17/2019
f1_keywords
Alias
helpviewer_keywords
ALIAS directive
ms.assetid 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