#include <stdint.h>
Go to the source code of this file.
Defines | |
#define | __attribute__(x) |
#define | __small_endian |
#define | IS_FAIL(x) ( ((x) & RESULT_FAIL_BIT) ) |
#define | IS_OK(x) ( ((x) & RESULT_FAIL_BIT) == 0 ) |
#define | RESULT_ALREADY_DONE 0x20 |
#define | RESULT_FAIL_BIT 0x80000000 |
#define | RESULT_FORMAT_NOT_SUPPORT (0x8005 | RESULT_FAIL_BIT) |
#define | RESULT_INSUFFICIENT_MEMORY (0x8006 | RESULT_FAIL_BIT) |
#define | RESULT_INVALID_DATA (0x8000 | RESULT_FAIL_BIT) |
#define | RESULT_OK 0 |
#define | RESULT_OPERATION_FAIL (0x8001 | RESULT_FAIL_BIT) |
#define | RESULT_OPERATION_NOT_SUPPORT (0x8004 | RESULT_FAIL_BIT) |
#define | RESULT_OPERATION_STOP (0x8003 | RESULT_FAIL_BIT) |
#define | RESULT_OPERATION_TIMEOUT (0x8002 | RESULT_FAIL_BIT) |
Typedefs | |
typedef int16_t | _s16 |
typedef int32_t | _s32 |
typedef int64_t | _s64 |
typedef int8_t | _s8 |
typedef uint16_t | _u16 |
typedef uint32_t | _u32 |
typedef uint64_t | _u64 |
typedef uint8_t | _u8 |
typedef uint32_t | u_result |
Functions | |
typedef | _word_size_t (THREAD_PROC *thread_proc_t)(void *) |
#define __attribute__ | ( | x | ) |
#define __small_endian |
#define IS_FAIL | ( | x | ) | ( ((x) & RESULT_FAIL_BIT) ) |
#define IS_OK | ( | x | ) | ( ((x) & RESULT_FAIL_BIT) == 0 ) |
#define RESULT_ALREADY_DONE 0x20 |
#define RESULT_FAIL_BIT 0x80000000 |
#define RESULT_FORMAT_NOT_SUPPORT (0x8005 | RESULT_FAIL_BIT) |
#define RESULT_INSUFFICIENT_MEMORY (0x8006 | RESULT_FAIL_BIT) |
#define RESULT_INVALID_DATA (0x8000 | RESULT_FAIL_BIT) |
#define RESULT_OPERATION_FAIL (0x8001 | RESULT_FAIL_BIT) |
#define RESULT_OPERATION_NOT_SUPPORT (0x8004 | RESULT_FAIL_BIT) |
#define RESULT_OPERATION_STOP (0x8003 | RESULT_FAIL_BIT) |
#define RESULT_OPERATION_TIMEOUT (0x8002 | RESULT_FAIL_BIT) |
typedef _word_size_t | ( | THREAD_PROC * | thread_proc_t | ) |