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
49eb0b70
Commit
49eb0b70
authored
Feb 01, 2005
by
Huw Davies
Committed by
Alexandre Julliard
Feb 01, 2005
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add support for dispinterfaces (slightly hacked because we force the
import of stdole2.tlb). Add propputref attribute.
parent
7266da3e
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
5 additions
and
1 deletion
+5
-1
parser.l
tools/widl/parser.l
+1
-0
parser.y
tools/widl/parser.y
+2
-1
typelib_struct.h
tools/widl/typelib_struct.h
+1
-0
widltypes.h
tools/widl/widltypes.h
+1
-0
write_msft.c
tools/widl/write_msft.c
+0
-0
No files found.
tools/widl/parser.l
View file @
49eb0b70
...
...
@@ -271,6 +271,7 @@ static struct keyword {
{"properties", tPROPERTIES},
{"propget", tPROPGET},
{"propput", tPROPPUT},
{"propputref", tPROPPUTREF},
/* ... */
{"public", tPUBLIC},
/* ... */
...
...
tools/widl/parser.y
View file @
49eb0b70
...
...
@@ -162,7 +162,7 @@ static type_t std_uhyper = { "MIDL_uhyper" };
%token tOUT
%token tPOINTERDEFAULT
%token tPROPERTIES
%token tPROPGET tPROPPUT
%token tPROPGET tPROPPUT
tPROPPUTREF
%token tPUBLIC
%token tREADONLY tREF
%token tRESTRICTED
...
...
@@ -368,6 +368,7 @@ attribute:
| tPOINTERDEFAULT '(' pointer_type ')' { $$ = make_attrv(ATTR_POINTERDEFAULT, $3); }
| tPROPGET { $$ = make_attr(ATTR_PROPGET); }
| tPROPPUT { $$ = make_attr(ATTR_PROPPUT); }
| tPROPPUTREF { $$ = make_attr(ATTR_PROPPUTREF); }
| tPUBLIC { $$ = make_attr(ATTR_PUBLIC); }
| tREADONLY { $$ = make_attr(ATTR_READONLY); }
| tRESTRICTED { $$ = make_attr(ATTR_RESTRICTED); }
...
...
tools/widl/typelib_struct.h
View file @
49eb0b70
...
...
@@ -182,6 +182,7 @@ typedef struct {
/* bits 8 - 11: CALLCONV */
/* bit 12: parameters have default values */
/* bit 13: oEntry is numeric */
/* bits 16 - 31: index of next function with same id */
#ifdef WORDS_BIGENDIAN
INT16
nroargs
;
/* nr of optional arguments */
INT16
nrargs
;
/* number of arguments (including optional ????) */
...
...
tools/widl/widltypes.h
View file @
49eb0b70
...
...
@@ -92,6 +92,7 @@ enum attr_type
ATTR_POINTERTYPE
,
ATTR_PROPGET
,
ATTR_PROPPUT
,
ATTR_PROPPUTREF
,
ATTR_PUBLIC
,
ATTR_READONLY
,
ATTR_RESTRICTED
,
...
...
tools/widl/write_msft.c
View file @
49eb0b70
This diff is collapsed.
Click to expand it.
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