Visible to Intel only — GUID: GUID-BDF77516-08C9-44DC-9533-8C608DF9EDD9
Visible to Intel only — GUID: GUID-BDF77516-08C9-44DC-9533-8C608DF9EDD9
DftiErrorMessage
Generates an error message.
Syntax
error_message = DftiErrorMessage(status);
Include Files
- mkl.h
Input Parameters
Name |
Type |
Description |
---|---|---|
status |
MKL_LONG |
Completion status of a function. |
Output Parameters
Name |
Type |
Description |
---|---|---|
error_message |
Array of char |
The character string with the error message. |
Description
The error message function generates an error message character string. The function returns a pointer to a constant character string, that is, a character array with terminating '\0' character, and you do not need to free this pointer.
Example Using Status Checking Function shows how this function can be used.
Prototype
char *DftiErrorMessage( MKL_LONG );