Home | History | Annotate | Download | only in inc
      1 #ifndef _CUOSTYPES_H_
      2 #define _CUOSTYPES_H_
      3 
      4 /* types */
      5 /*********/
      6 #if !defined(VOID)
      7 typedef void                    VOID,*PVOID;
      8 #endif
      9 typedef unsigned char           U8,*PU8;
     10 typedef /*signed*/ char         S8,*PS8,**PPS8;
     11 typedef unsigned short          U16,*PU16;
     12 typedef signed short            S16,*PS16;
     13 typedef unsigned long           U32,*PU32;
     14 typedef signed long             S32,*PS32;
     15 typedef float                   F32,*PF32;
     16 typedef PVOID                   THandle;
     17 typedef int                     TI_SIZE_T;
     18 
     19 #endif
     20