summaryrefslogtreecommitdiff
path: root/atombios_types.h
blob: f2ab14c1b29d4a421332dcc6eca27186d04e82ec (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
/*
 * Copyright 2007 Matthias Hopf <mhopf@suse.de>
 *
 * AtomBIOS disassembler + data structure dumper
 *
 * Types needed for atombios.h.
 *
 * License: GPL Version 2.0
 */

#include <stdint.h>

typedef uint8_t		BOOLEAN;
typedef int8_t		INT8;
typedef uint8_t		UINT8;
typedef int16_t		INT16;
typedef uint16_t	UINT16;
typedef int32_t		INT32;
typedef uint32_t	UINT32;
typedef uint8_t		CHAR8;
typedef uint16_t	CHAR16;
typedef uint16_t	USHORT;
typedef uint8_t		UCHAR;
typedef	uint32_t	ULONG;