diff options
author | sagitario <sagitario@fc51e93f-b9fe-4711-8d8d-3ae870c5f7d8> | 2011-05-08 07:45:27 (GMT) |
---|---|---|
committer | sagitario <sagitario@fc51e93f-b9fe-4711-8d8d-3ae870c5f7d8> | 2011-05-08 07:45:27 (GMT) |
commit | 60cbfcd62a1d8c81b01342f302df4d06a1ae0cb2 (patch) | |
tree | 6f2e785043f726b8eb8f0fe8a37840029a0def3b /src/cvutil.h | |
parent | c50711be6be8b679d5e2b2a9849ced1665134268 (diff) | |
download | cv2pdb-60cbfcd62a1d8c81b01342f302df4d06a1ae0cb2.zip cv2pdb-60cbfcd62a1d8c81b01342f302df4d06a1ae0cb2.tar.gz cv2pdb-60cbfcd62a1d8c81b01342f302df4d06a1ae0cb2.tar.bz2 |
* fixed decoding of compressed symbols
* added command line switch
* fixed crash with more than 32767 types
Diffstat (limited to 'src/cvutil.h')
-rw-r--r-- | src/cvutil.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/cvutil.h b/src/cvutil.h index 4b35c6a..d9817e5 100644 --- a/src/cvutil.h +++ b/src/cvutil.h @@ -28,6 +28,7 @@ enum };
// class properties (also apply to struct,union and enum)
+static const int kPropNone = 0x00;
static const int kPropPacked = 0x01;
static const int kPropHasCtorDtor = 0x02;
static const int kPropHasOverOps = 0x04;
@@ -37,6 +38,7 @@ static const int kPropHasOverAsgn = 0x20; static const int kPropHasCasting = 0x40;
static const int kPropIncomplete = 0x80;
static const int kPropScoped = 0x100;
+static const int kPropReserved2 = 0x200;
bool isStruct(const codeview_type* cvtype);
bool isClass(const codeview_type* cvtype);
|