]> git.saurik.com Git - apple/system_cmds.git/blob - KDBG/MetaTypes.hpp
system_cmds-671.10.3.tar.gz
[apple/system_cmds.git] / KDBG / MetaTypes.hpp
1 //
2 // MetaTypes.hpp
3 // KDBG
4 //
5 // Created by James McIlree on 10/24/12.
6 // Copyright (c) 2014 Apple. All rights reserved.
7 //
8
9 class Kernel32
10 {
11 public:
12 typedef uint32_t ptr_t;
13
14 enum { PTRMAX = UINT32_MAX };
15 enum { is_64_bit = 0 };
16 };
17
18 class Kernel64
19 {
20 public:
21 typedef uint64_t ptr_t;
22
23 enum { PTRMAX = UINT64_MAX };
24 enum { is_64_bit = 1 };
25 };