Translates a status code into a message.
const char* ippGetStatusString(IppStatus StsCode);
StsCode |
Code that indicates the status type (see Table Status Codes and Messages) |
The function ippGetStatusStringis declared in the ippcore.h file. This function returns a pointer to the text string associated with a status code StsCode. Use this function to produce error and warning messages. The returned pointer is a pointer to an internal static buffer and needs not be released.
A code example below shows how to use the ippGetStatusString function. If you call an Intel IPP function, in this example ippiSet_8u_C1R, with a NULL pointer, it returns an error code -8.
The status information function translates this code into the corresponding message Null Pointer Error:
Copyright © 2000 - 2011, Intel Corporation. All rights reserved.