summaryrefslogtreecommitdiffstats
path: root/K2LABI/Common/k2l-type.h
blob: 4d95be9766b9eb67b927f23d7cd5191a9cc51e1f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
//
//  k2l-type.h
//  AmbientLight
//
//  Created by Thorsten Kummermehr on 10/9/13.
//
//
#ifndef AmbientLight_k2l_type_h
#define AmbientLight_k2l_type_h


#include <stdint.h>
#include <stddef.h>

#define K2LABI_API

typedef uint8_t BYTE;
typedef uint16_t WORD;
typedef uint32_t DWORD;
typedef uint32_t HRESULT;

typedef char TCHAR;

typedef void* HANDLE;

#endif