Devel Lib
Typedef.h
Go to the documentation of this file.
1 #pragma once
4 
7 typedef long long int64;
8 
11 typedef unsigned long long uint64;
12 
15 typedef unsigned long DWORD;
16 
19 typedef unsigned int uint;
20 
23 typedef unsigned short ushort;
24 
27 typedef unsigned char byte;
28 
31 typedef void *HANDLE;
32 
35 typedef void *Function;
unsigned int uint
An unsigned integer type.
Definition: Typedef.h:19
unsigned char byte
A byte type.
Definition: Typedef.h:27
unsigned long DWORD
An unsigned long type, traditionally used in Windows development for return values,...
Definition: Typedef.h:15
unsigned long long uint64
A 64-bit unsigned integer type.
Definition: Typedef.h:11
void * Function
A function pointer type.
Definition: Typedef.h:35
long long int64
A 64-bit integer type.
Definition: Typedef.h:7
unsigned short ushort
An unsigned short integer type.
Definition: Typedef.h:23