Skip to content

Latest commit

 

History

History
49 lines (35 loc) · 1.47 KB

rtc-geterrdesc.md

File metadata and controls

49 lines (35 loc) · 1.47 KB
description title ms.date api_name api_location api_type topic_type f1_keywords helpviewer_keywords ms.assetid
Learn more about: _RTC_GetErrDesc
_RTC_GetErrDesc
11/04/2016
_RTC_GetErrDesc
msvcrt.dll
msvcr80.dll
msvcr90.dll
msvcr100.dll
msvcr100_clr0400.dll
msvcr110.dll
msvcr110_clr0400.dll
msvcr120.dll
msvcr120_clr0400.dll
ucrtbase.dll
DLLExport
apiref
RTC_GetErrDesc
_RTC_GetErrDesc
run-time errors
_RTC_GetErrDesc function
RTC_GetErrDesc function
7994ec2b-5488-4fd4-806d-a166c9a9f927

_RTC_GetErrDesc

Returns a brief description of a run-time error check (RTC) type.

Syntax

const char * _RTC_GetErrDesc(
   _RTC_ErrorNumber errnum
);

Parameters

errnum
A number between zero and one less than the value returned by _RTC_NumErrors.

Return value

A character string that contains a short description of one of the error types detected by the run-time error check system. If error is less than zero or greater than or equal to the value returned by _RTC_NumErrors, _RTC_GetErrDesc returns NULL.

Requirements

Routine Required header
_RTC_GetErrDesc <rtcapi.h>

For more information, see Compatibility.

Libraries

All versions of the C run-time libraries.

See also

_RTC_NumErrors
Runtime error checking