Share via


_INTRINSIC_IS_INLINE

This macro determines if the compiler expands a specified intrinsic to one or more lines.

_INTRINSIC_IS_INLINE(arg)
(
  (
    (_INTRINSIC_ ## arg) & 
     _INTRINSIC_INLINE
    ) != 0
)

Parameters

  • arg
    [in] The name of the intrinsic function of interest.

Return Values

A non-zero return value indicates that the intrinsic named by arg may be expanded to an inline sequence of one or more instructions by the compiler.

Requirements

OS Versions: Windows CE .NET 4.0 and later.
Header: Cmnintr.h.

See Also

Common Intrinsic Functions

 Last updated on Thursday, April 08, 2004

© 1992-2003 Microsoft Corporation. All rights reserved.