File: Types.h

package info (click to toggle)
nestopia 1.53.2%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 12,440 kB
  • sloc: cpp: 130,559; xml: 27,280; ansic: 4,053; makefile: 970; sh: 19
file content (19 lines) | stat: -rw-r--r-- 359 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// Common/Types.h

#ifndef __COMMON_TYPES_H
#define __COMMON_TYPES_H

typedef unsigned char Byte;
typedef short Int16;
typedef unsigned short UInt16;
typedef int Int32;
typedef unsigned int UInt32;
#ifdef _MSC_VER
typedef __int64 Int64;
typedef unsigned __int64 UInt64;
#else
typedef long long int Int64;
typedef unsigned long long int UInt64;
#endif

#endif