// // common.h // liboffsetfinder64 // // Created by tihmstar on 09.03.18. // Copyright © 2018 tihmstar. All rights reserved. // #ifndef common_h #define common_h #include #include namespace tihmstar{ namespace patchfinder64{ typedef uint8_t* loc_t; typedef uint64_t offset_t; struct text_t{ patchfinder64::loc_t map; size_t size; patchfinder64::loc_t base; bool isExec; }; using segment_t = std::vector; } } #endif /* common_h */