Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
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-winehq
Commits
68604dba
Commit
68604dba
authored
Oct 06, 2004
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Allow defined types to be used as function names.
parent
b6aa6210
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
exdisp.idl
include/exdisp.idl
+1
-2
parser.y
tools/widl/parser.y
+1
-0
No files found.
include/exdisp.idl
View file @
68604dba
...
...
@@ -100,8 +100,7 @@ interface IWebBrowserApp : IWebBrowser
HRESULT
PutProperty
(
[
in
]
BSTR
szProperty
,
[
in
]
VARIANT
vtValue
)
;
HRESULT
GetProperty
(
[
in
]
BSTR
szProperty
,
[
out
]
VARIANT
*
pvtValue
)
;
[
propget
]
HRESULT
Name
(
[
out
]
BSTR
*
Name
)
;
/*
FIXME
:
get_HWND
should
be
propget
too
but
widl
gets
confused
by
the
HWND
*/
HRESULT
get_HWND
(
[
out
]
long
*
pHWND
)
;
[
propget
]
HRESULT
HWND
(
[
out
]
long
*
pHWND
)
;
[
propget
]
HRESULT
FullName
(
[
out
]
BSTR
*
FullName
)
;
[
propget
]
HRESULT
Path
(
[
out
]
BSTR
*
Path
)
;
[
propget
]
HRESULT
Visible
(
[
out
]
VARIANT_BOOL
*
pBool
)
;
...
...
tools/widl/parser.y
View file @
68604dba
...
...
@@ -525,6 +525,7 @@ t_ident: { $$ = NULL; }
ident: aIDENTIFIER { $$ = make_var($1); }
/* some "reserved words" used in attributes are also used as field names in some MS IDL files */
| aKNOWNTYPE { $$ = make_var($<str>1); }
| tID { $$ = make_var($<str>1); }
| tRETVAL { $$ = make_var($<str>1); }
| tVERSION { $$ = make_var($<str>1); }
...
...
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