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
88bbfadb
Commit
88bbfadb
authored
Feb 11, 2004
by
Ove Kaaven
Committed by
Alexandre Julliard
Feb 11, 2004
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Parse the [input_sync] attribute.
parent
cc535b7c
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
4 additions
and
0 deletions
+4
-0
parser.l
tools/widl/parser.l
+1
-0
parser.y
tools/widl/parser.y
+2
-0
widltypes.h
tools/widl/widltypes.h
+1
-0
No files found.
tools/widl/parser.l
View file @
88bbfadb
...
@@ -236,6 +236,7 @@ static struct keyword {
...
@@ -236,6 +236,7 @@ static struct keyword {
{"in", tIN},
{"in", tIN},
{"include", tINCLUDE},
{"include", tINCLUDE},
{"in_line", tINLINE},
{"in_line", tINLINE},
{"input_sync", tINPUTSYNC},
{"int", tINT},
{"int", tINT},
/* ... */
/* ... */
{"interface", tINTERFACE},
{"interface", tINTERFACE},
...
...
tools/widl/parser.y
View file @
88bbfadb
...
@@ -140,6 +140,7 @@ static type_t std_uhyper = { "MIDL_uhyper" };
...
@@ -140,6 +140,7 @@ static type_t std_uhyper = { "MIDL_uhyper" };
%token tIIDIS
%token tIIDIS
%token tIMPORT tIMPORTLIB
%token tIMPORT tIMPORTLIB
%token tIN tINCLUDE tINLINE
%token tIN tINCLUDE tINLINE
%token tINPUTSYNC
%token tINT tINT64
%token tINT tINT64
%token tINTERFACE
%token tINTERFACE
%token tLENGTHIS tLIBRARY
%token tLENGTHIS tLIBRARY
...
@@ -331,6 +332,7 @@ attribute:
...
@@ -331,6 +332,7 @@ attribute:
| tIDEMPOTENT { $$ = make_attr(ATTR_IDEMPOTENT); }
| tIDEMPOTENT { $$ = make_attr(ATTR_IDEMPOTENT); }
| tIIDIS '(' ident ')' { $$ = make_attrp(ATTR_IIDIS, $3); }
| tIIDIS '(' ident ')' { $$ = make_attrp(ATTR_IIDIS, $3); }
| tIN { $$ = make_attr(ATTR_IN); }
| tIN { $$ = make_attr(ATTR_IN); }
| tINPUTSYNC { $$ = make_attr(ATTR_INPUTSYNC); }
| tLENGTHIS '(' m_exprs ')' { $$ = make_attrp(ATTR_LENGTHIS, $3); }
| tLENGTHIS '(' m_exprs ')' { $$ = make_attrp(ATTR_LENGTHIS, $3); }
| tLOCAL { $$ = make_attr(ATTR_LOCAL); }
| tLOCAL { $$ = make_attr(ATTR_LOCAL); }
| tOBJECT { $$ = make_attr(ATTR_OBJECT); }
| tOBJECT { $$ = make_attr(ATTR_OBJECT); }
...
...
tools/widl/widltypes.h
View file @
88bbfadb
...
@@ -67,6 +67,7 @@ enum attr_type
...
@@ -67,6 +67,7 @@ enum attr_type
ATTR_IDEMPOTENT
,
ATTR_IDEMPOTENT
,
ATTR_IIDIS
,
ATTR_IIDIS
,
ATTR_IN
,
ATTR_IN
,
ATTR_INPUTSYNC
,
ATTR_LENGTHIS
,
ATTR_LENGTHIS
,
ATTR_LOCAL
,
ATTR_LOCAL
,
ATTR_OBJECT
,
ATTR_OBJECT
,
...
...
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