34 lines
956 B
C
34 lines
956 B
C
// +FHDR------------------------------------------------------------
|
|
// Copyright (c) 2022 SmartLogic.
|
|
// ALL RIGHTS RESERVED
|
|
// -----------------------------------------------------------------
|
|
// Filename : typedef.h
|
|
// Author : xianfeng.du
|
|
// Created On : 2022-06-25
|
|
// Last Modified :
|
|
// -----------------------------------------------------------------
|
|
// Description:
|
|
//
|
|
//
|
|
// -FHDR------------------------------------------------------------
|
|
|
|
#ifndef __TYPEDEF_H__
|
|
#define __TYPEDEF_H__
|
|
|
|
//Types definitions
|
|
//typedef unsigned char bool;
|
|
typedef unsigned char uint8_t;
|
|
typedef signed char int8_t;
|
|
typedef short int int16_t;
|
|
typedef unsigned short int uint16_t;
|
|
typedef int int32_t;
|
|
typedef unsigned int uint32_t;
|
|
typedef long int int64_t;
|
|
typedef unsigned long int uint64_t;
|
|
//typedef long long int int64_t;
|
|
//typedef unsigned long long int uint64_t;
|
|
|
|
typedef uint64_t (*OSP_FUNCPTR)();
|
|
|
|
#endif
|