dbghelp: Fix mixed up return and this type in MFunction V2.

This commit is contained in:
Eric Pouech 2008-02-06 21:55:17 +01:00 committed by Alexandre Julliard
parent 464d51e75a
commit d5a60cf409
1 changed files with 3 additions and 3 deletions

View File

@ -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