STDResult

Definition

#include <nitro/std.h>

typedef enum STDResult
{
STD_RESULT_SUCCESS,
STD_RESULT_ERROR,
STD_RESULT_INVALID_PARAM,
STD_RESULT_CONVERSION_FAILED
}
STDResult;


Description

This shows the enumerator constants that indicate the processing result of STD library functions.
The meaning of each enumerator constant is shown in the following table:
Value Description
STD_RESULT_SUCCESS Indicates that processing completed successfully.
STD_RESULT_INVALID_PARAM Indicates that the process failed due to a problem wih the argument passed to the function.
STD_RESULT_CONVERSION_FAILED Indicates that the character code conversion function failed at conversion and terminated processing.
STD_RESULT_ERROR Indicates the process failed because of a problem other than those listed above.

See Also

STD_ConvertStringSjisToUnicode STD_ConvertStringUnicodeToSjis

Revision History

2006/08/10 Initial version.


CONFIDENTIAL