#include <nitro/std.h>
typedef enum STDResult
{
STD_RESULT_SUCCESS,
STD_RESULT_ERROR,
STD_RESULT_INVALID_PARAM,
STD_RESULT_CONVERSION_FAILED
}
STDResult;
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. |
STD_ConvertStringSjisToUnicode STD_ConvertStringUnicodeToSjis
08/10/2006 Initial version.
CONFIDENTIAL