libTriton version 1.0 build 1590
Loading...
Searching...
No Matches
stubs.hpp
Go to the documentation of this file.
1
2/*
3** Copyright (C) - Triton
4**
5** This program is under the terms of the Apache License 2.0.
6*/
7
8#ifndef TRITON_STUBS_HPP
9#define TRITON_STUBS_HPP
10
11#include <map>
12#include <vector>
13
15
16
17
18namespace triton {
19 namespace stubs {
20 namespace x8664 {
21 namespace systemv {
22 namespace libc {
24 extern std::map<std::string, triton::uint64> symbols;
26 extern std::vector<triton::uint8> code;
27 };
28 };
29 namespace ms {
30 namespace libc {
32 extern std::map<std::string, triton::uint64> symbols;
34 extern std::vector<triton::uint8> code;
35 };
36 };
37 };
38 namespace i386 {
39 namespace systemv {
40 namespace libc {
42 extern std::map<std::string, triton::uint64> symbols;
44 extern std::vector<triton::uint8> code;
45 };
46 };
47 };
48 namespace aarch64 {
49 namespace libc {
51 extern std::map<std::string, triton::uint64> symbols;
53 extern std::vector<triton::uint8> code;
54 };
55 };
56 };
57};
58
59#endif /* TRITON_STUBS_HPP */
The Triton namespace.
std::map< std::string, triton::uint64 > symbols