summaryrefslogtreecommitdiff
path: root/wl1271/CUDK/os/common/inc/cu_ostypes.h
blob: 83a076935b14b38f788c6531402a4ccf5fea7346 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#ifndef _CUOSTYPES_H_
#define _CUOSTYPES_H_

/* types */
/*********/
#if !defined(VOID)
typedef void                    VOID,*PVOID;
#endif
typedef unsigned char           U8,*PU8;
typedef /*signed*/ char         S8,*PS8,**PPS8;
typedef unsigned short          U16,*PU16;
typedef signed short            S16,*PS16;
typedef unsigned long           U32,*PU32;
typedef signed long             S32,*PS32;
typedef float                   F32,*PF32;
typedef PVOID                   THandle;
typedef int                     TI_SIZE_T;

#endif