Commit d5a60cf4 authored by Eric Pouech's avatar Eric Pouech Committed by Alexandre Julliard

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

parent 464d51e7
......@@ -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
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment