Module: wine
Branch: master
Commit: d5a60cf40980b29d403fec4eae681e4f832e0419
URL: http://source.winehq.org/git/wine.git/?a=commit;h=d5a60cf40980b29d403fec4ea…
Author: Eric Pouech <eric.pouech(a)orange.fr>
Date: Wed Feb 6 21:55:17 2008 +0100
dbghelp: Fix mixed up return and this type in MFunction V2.
---
include/wine/mscvpdb.h | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/include/wine/mscvpdb.h b/include/wine/mscvpdb.h
index da486d9..8a22dfd 100644
--- a/include/wine/mscvpdb.h
+++ b/include/wine/mscvpdb.h
@@ -343,9 +343,9 @@ union codeview_type
{
unsigned short int len;
short int id;
- unsigned this_type;
- unsigned int class_type;
unsigned int rvtype;
+ unsigned int class_type;
+ unsigned this_type;
unsigned char call;
unsigned char reserved;
unsigned short params;
@@ -733,6 +733,7 @@ union codeview_fieldtype
* are apparently not used by the compiler, or represent pointer types
* that are not used.
*/
+
/* the type number of a built-in type is a 16-bit value specified in the following format:
bit # | 11 | 10-8 | 7-4 | 3 | 2-0 |
field | reserved | mode | type | reserved | size |
@@ -1033,7 +1034,6 @@ union codeview_fieldtype
#define T_NEAR64PTR_BITS 0x0600
-
#define LF_MODIFIER_V1 0x0001
#define LF_POINTER_V1 0x0002
#define LF_ARRAY_V1 0x0003