Skip to content

Latest commit

 

History

History
29 lines (25 loc) · 1.19 KB

File metadata and controls

29 lines (25 loc) · 1.19 KB
title Backward Compatibility | Microsoft Docs
ms.custom
ms.date 11/04/2016
ms.reviewer
ms.suite
ms.technology
cpp-standard-libraries
ms.tgt_pltfrm
ms.topic article
f1_keywords
c.programs
dev_langs
C++
helpviewer_keywords
CRT, compatibility
backward compatibility, C run-time libraries
compatibility, C run-time libraries
backward compatibility
ms.assetid cc3175cf-97fd-492f-b329-5791aea63090
caps.latest.revision 7
author corob-msft
ms.author corob
manager ghogen

Backward Compatibility

For compatibility between product versions, the library OLDNAMES.LIB maps old names to new names. For instance, open maps to _open. You must explicitly link with OLDNAMES.LIB only when you compile with the following combinations of command-line options:

  • /Zl (omit default library name from object file) and /Ze (the default — use Microsoft extensions)

  • /link (linker-control), /NOD (no default-library search), and /Ze

For more information about compiler command-line options, see Compiler Reference.

See Also

Compatibility