Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-cw
Commits
9c30da77
Commit
9c30da77
authored
May 24, 2007
by
Dan Hipschman
Committed by
Alexandre Julliard
May 25, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
widl: Shrink type_t structure.
parent
00ce4112
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
3 deletions
+7
-3
parser.y
tools/widl/parser.y
+1
-1
widltypes.h
tools/widl/widltypes.h
+6
-2
No files found.
tools/widl/parser.y
View file @
9c30da77
...
...
@@ -1200,7 +1200,7 @@ static type_t *make_type(unsigned char type, type_t *ref)
t->fields = NULL;
t->ifaces = NULL;
t->typestring_offset = 0;
t->ignore =
parse_only
;
t->ignore =
(parse_only != 0)
;
t->is_const = FALSE;
t->sign = 0;
t->defined = FALSE;
...
...
tools/widl/widltypes.h
View file @
9c30da77
...
...
@@ -208,9 +208,13 @@ struct _type_t {
ifref_list_t
*
ifaces
;
/* coclasses */
type_t
*
orig
;
/* dup'd types */
unsigned
int
typestring_offset
;
int
ignore
,
is_const
,
sign
;
int
defined
,
written
,
user_types_registered
;
int
typelib_idx
;
unsigned
int
ignore
:
1
;
unsigned
int
is_const
:
1
;
unsigned
int
defined
:
1
;
unsigned
int
written
:
1
;
unsigned
int
user_types_registered
:
1
;
int
sign
:
2
;
};
struct
_var_t
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment