diff options
author | AlexWhiter <a.whiter@yandex.ru> | 2018-03-30 15:51:31 (GMT) |
---|---|---|
committer | AlexWhiter <a.whiter@yandex.ru> | 2018-03-30 15:51:31 (GMT) |
commit | 6dd1bb797c2d74052def1ba869961caa6dce3661 (patch) | |
tree | 7bc0f8613295c2cbb51fcca3e63d3819dea8d665 /src/PEImage.h | |
parent | a0930e367b39e7a7d0d2f8803cb6e7b983c2def5 (diff) | |
download | cv2pdb-6dd1bb797c2d74052def1ba869961caa6dce3661.zip cv2pdb-6dd1bb797c2d74052def1ba869961caa6dce3661.tar.gz cv2pdb-6dd1bb797c2d74052def1ba869961caa6dce3661.tar.bz2 |
RSDS section writing into EXE with symbols in DBG file.
Diffstat (limited to 'src/PEImage.h')
-rw-r--r-- | src/PEImage.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/PEImage.h b/src/PEImage.h index 5ebfa16..ce8e804 100644 --- a/src/PEImage.h +++ b/src/PEImage.h @@ -90,7 +90,7 @@ public: unsigned long long getImageBase() const { return IMGHDR(OptionalHeader.ImageBase); }
int getRelocationInLineSegment(unsigned int offset) const;
int getRelocationInSegment(int segment, unsigned int offset) const;
-
+ bool areDebugSymbolsStripped() const { return (IMGHDR(FileHeader.Characteristics) & IMAGE_FILE_DEBUG_STRIPPED) != 0; }
int dumpDebugLineInfoCOFF();
int dumpDebugLineInfoOMF();
|