diff options
Diffstat (limited to 'include/pdb/address.hpp')
-rw-r--r-- | include/pdb/address.hpp | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/include/pdb/address.hpp b/include/pdb/address.hpp new file mode 100644 index 0000000..53b25e8 --- /dev/null +++ b/include/pdb/address.hpp @@ -0,0 +1,13 @@ +// Copyright (c) 2017 Egor Tensin <Egor.Tensin@gmail.com> +// This file is part of the "PDB repository" project. +// For details, see https://github.com/egor-tensin/pdb-repo. +// Distributed under the MIT License. + +#pragma once + +#include <Windows.h> + +namespace pdb +{ + typedef DWORD64 Address; +} |