• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 #ifndef _nvtypes_h_
2 #define _nvtypes_h_
3 
4 #include <stdbool.h>
5 #include <stdint.h>
6 
7 typedef bool NvBool;
8 
9 typedef uint8_t NvV8;
10 typedef uint16_t NvV16;
11 typedef uint32_t NvV32;
12 typedef uint64_t NvV64;
13 
14 typedef uint8_t NvU8;
15 typedef uint16_t NvU16;
16 typedef uint32_t NvU32;
17 typedef uint64_t NvU64;
18 
19 typedef int8_t NvS8;
20 typedef int16_t NvS16;
21 typedef int32_t NvS32;
22 typedef int64_t NvS64;
23 
24 #endif
25