Changeset 56 for trunk/nv/common.hh


Ignore:
Timestamp:
05/29/13 22:24:25 (12 years ago)
Author:
epyon
Message:
  • lua_aux added ( table functions currently )
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/nv/common.hh

    r55 r56  
    120120namespace nv
    121121{
     122        class object;
    122123
    123   // Typedefs for fixed size types.
    124   typedef signed char         sint8;
    125   typedef signed short        sint16;
    126   typedef signed long         sint32;
     124        // Typedefs for fixed size types.
     125        typedef signed char         sint8;
     126        typedef signed short        sint16;
     127        typedef signed long         sint32;
    127128#if NV_COMPILER == NV_MSVC
    128   typedef signed __int64      sint64;
     129        typedef signed __int64      sint64;
    129130#else
    130   typedef signed long long    sint64;
     131        typedef signed long long    sint64;
    131132#endif
    132133
    133   typedef unsigned char       uint8;
    134   typedef unsigned short      uint16;
    135   typedef unsigned long       uint32;
     134        typedef unsigned char       uint8;
     135        typedef unsigned short      uint16;
     136        typedef unsigned long       uint32;
    136137#if NV_COMPILER == NV_MSVC
    137   typedef unsigned __int64    uint64;
     138        typedef unsigned __int64    uint64;
    138139#else
    139   typedef unsigned long long  uint64;
     140        typedef unsigned long long  uint64;
    140141#endif
    141142
    142   typedef unsigned char       char8;
    143   typedef unsigned short      char16;
    144   typedef unsigned long       char32;
     143        typedef unsigned char       char8;
     144        typedef unsigned short      char16;
     145        typedef unsigned long       char32;
    145146
    146   typedef float  f32;
    147   typedef double f64;
     147        typedef float  f32;
     148        typedef double f64;
    148149
    149   typedef uint64 uid;
     150        typedef uint64 uid;
    150151
    151152} // namespace nv
Note: See TracChangeset for help on using the changeset viewer.