skerror.h 445 Bytes
#ifndef __SK_ERROR_HDR__
#define __SK_ERROR_HDR__

/* return and error code definitions. all error codes
 * must be negative.
 */
#define SK_SUCCESS                        0
#define SK_FAIL                          -1
#define SK_ERROR_FLASH_CTRL_DOUBLE_BIT   -2
#define SK_ERROR_FLASH_MODULE_REMOVED    -3
#define SK_VIRAGE_WRITE_ERROR            -4


#if defined(_LANGUAGE_C)
#define JUMP_EXCEPTION ( (void (*)())0xbfc00380 )();
#endif

#endif