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
04a76cf5
Commit
04a76cf5
authored
May 17, 2007
by
Huw Davies
Committed by
Alexandre Julliard
May 18, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
oleaut32: Tests for more 'syntax 2' dispinterfaces.
parent
78bf6946
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
109 additions
and
0 deletions
+109
-0
tmarshal.idl
dlls/oleaut32/tests/tmarshal.idl
+39
-0
typelib.c
dlls/oleaut32/tests/typelib.c
+70
-0
No files found.
dlls/oleaut32/tests/tmarshal.idl
View file @
04a76cf5
...
...
@@ -228,4 +228,43 @@ library TestTypelib
{
[
id
(
0
x1236
)
]
HRESULT
fn6
(
[
in
]
int
a
)
;
}
[
odl
,
uuid
(
bdfa260b
-
ef40
-
43
d3
-
b071
-
cddec919f132
)
]
interface
ItestIF8
{
HRESULT
fn1
(
[
in
]
int
x
)
;
HRESULT
fn2
(
[
out
,
retval
]
int
*
x
)
;
}
[
odl
,
uuid
(
51033
a23
-
dc37
-
4
f19
-
aa34
-
4
d8a670458a0
)
]
interface
ItestIF9
:
ItestIF8
{
HRESULT
fn3
(
[
in
]
int
y
)
;
}
[
odl
,
uuid
(
2
e8f14fe
-
0b
ce
-
42
f0
-
8b
7d-3
af8393c7967
)
]
dispinterface
ItestIF10
{
interface
ItestIF9
;
}
[
odl
,
uuid
(
7
d9e9371
-482e-4944
-
9b19
-
511
fc705236f
)
]
dispinterface
ItestIF11
{
interface
ItestIF7
;
}
}
;
dlls/oleaut32/tests/typelib.c
View file @
04a76cf5
...
...
@@ -720,6 +720,76 @@ if(use_midl_tlb) {
ITypeInfo_ReleaseFuncDesc
(
pTI
,
pFD
);
ITypeInfo_Release
(
pTI
);
/* ItestIF10 is a syntax 2 dispinterface which doesn't derive from IUnknown */
hr
=
ITypeLib_GetTypeInfoOfGuid
(
pTL
,
&
DIID_ItestIF10
,
&
pTI
);
ok
(
hr
==
S_OK
,
"hr %08x
\n
"
,
hr
);
hr
=
ITypeInfo_GetTypeAttr
(
pTI
,
&
pTA
);
ok
(
hr
==
S_OK
,
"hr %08x
\n
"
,
hr
);
ok
(
pTA
->
typekind
==
TKIND_DISPATCH
,
"kind %04x
\n
"
,
pTA
->
typekind
);
ok
(
pTA
->
cbSizeVft
==
28
,
"sizevft %d
\n
"
,
pTA
->
cbSizeVft
);
ok
(
pTA
->
wTypeFlags
==
TYPEFLAG_FDISPATCHABLE
,
"typeflags %x
\n
"
,
pTA
->
wTypeFlags
);
if
(
use_midl_tlb
)
{
ok
(
pTA
->
cFuncs
==
3
,
"cfuncs %d
\n
"
,
pTA
->
cFuncs
);
ok
(
pTA
->
cImplTypes
==
1
,
"cimpltypes %d
\n
"
,
pTA
->
cImplTypes
);
ITypeInfo_ReleaseTypeAttr
(
pTI
,
pTA
);
hr
=
ITypeInfo_GetRefTypeOfImplType
(
pTI
,
-
1
,
&
href
);
ok
(
hr
==
TYPE_E_ELEMENTNOTFOUND
,
"hr %08x
\n
"
,
hr
);
hr
=
ITypeInfo_GetRefTypeOfImplType
(
pTI
,
0
,
&
href
);
ok
(
hr
==
S_OK
,
"hr %08x
\n
"
,
hr
);
hr
=
ITypeInfo_GetRefTypeInfo
(
pTI
,
href
,
&
pTI_p
);
ok
(
hr
==
S_OK
,
"hr %08x
\n
"
,
hr
);
hr
=
ITypeInfo_GetTypeAttr
(
pTI_p
,
&
pTA
);
ok
(
IsEqualGUID
(
&
pTA
->
guid
,
&
IID_IDispatch
),
"guid {%08x-....
\n
"
,
pTA
->
guid
.
Data1
);
ITypeInfo_ReleaseTypeAttr
(
pTI_p
,
pTA
);
ITypeInfo_Release
(
pTI_p
);
/* Should have three methods */
hr
=
ITypeInfo_GetFuncDesc
(
pTI
,
3
,
&
pFD
);
ok
(
hr
==
TYPE_E_ELEMENTNOTFOUND
,
"hr %08x
\n
"
,
hr
);
hr
=
ITypeInfo_GetFuncDesc
(
pTI
,
2
,
&
pFD
);
ok
(
hr
==
S_OK
,
"hr %08x
\n
"
,
hr
);
ok
(
pFD
->
memid
==
0x60010000
,
"memid %08x
\n
"
,
pFD
->
memid
);
ok
(
pFD
->
oVft
==
8
,
"oVft %d
\n
"
,
pFD
->
oVft
);
ITypeInfo_ReleaseFuncDesc
(
pTI
,
pFD
);
}
ITypeInfo_Release
(
pTI
);
/* ItestIF11 is a syntax 2 dispinterface which derives from IDispatch */
hr
=
ITypeLib_GetTypeInfoOfGuid
(
pTL
,
&
DIID_ItestIF11
,
&
pTI
);
ok
(
hr
==
S_OK
,
"hr %08x
\n
"
,
hr
);
hr
=
ITypeInfo_GetTypeAttr
(
pTI
,
&
pTA
);
ok
(
hr
==
S_OK
,
"hr %08x
\n
"
,
hr
);
ok
(
pTA
->
typekind
==
TKIND_DISPATCH
,
"kind %04x
\n
"
,
pTA
->
typekind
);
ok
(
pTA
->
cbSizeVft
==
28
,
"sizevft %d
\n
"
,
pTA
->
cbSizeVft
);
ok
(
pTA
->
wTypeFlags
==
TYPEFLAG_FDISPATCHABLE
,
"typeflags %x
\n
"
,
pTA
->
wTypeFlags
);
if
(
use_midl_tlb
)
{
ok
(
pTA
->
cFuncs
==
10
,
"cfuncs %d
\n
"
,
pTA
->
cFuncs
);
ok
(
pTA
->
cImplTypes
==
1
,
"cimpltypes %d
\n
"
,
pTA
->
cImplTypes
);
ITypeInfo_ReleaseTypeAttr
(
pTI
,
pTA
);
hr
=
ITypeInfo_GetRefTypeOfImplType
(
pTI
,
0
,
&
href
);
ok
(
hr
==
S_OK
,
"hr %08x
\n
"
,
hr
);
hr
=
ITypeInfo_GetRefTypeInfo
(
pTI
,
href
,
&
pTI_p
);
ok
(
hr
==
S_OK
,
"hr %08x
\n
"
,
hr
);
hr
=
ITypeInfo_GetTypeAttr
(
pTI_p
,
&
pTA
);
ok
(
IsEqualGUID
(
&
pTA
->
guid
,
&
IID_IDispatch
),
"guid {%08x-....
\n
"
,
pTA
->
guid
.
Data1
);
ITypeInfo_ReleaseTypeAttr
(
pTI_p
,
pTA
);
ITypeInfo_Release
(
pTI_p
);
/* Should have ten methods */
hr
=
ITypeInfo_GetFuncDesc
(
pTI
,
10
,
&
pFD
);
ok
(
hr
==
TYPE_E_ELEMENTNOTFOUND
,
"hr %08x
\n
"
,
hr
);
hr
=
ITypeInfo_GetFuncDesc
(
pTI
,
9
,
&
pFD
);
ok
(
hr
==
S_OK
,
"hr %08x
\n
"
,
hr
);
ok
(
pFD
->
memid
==
0x1236
,
"memid %08x
\n
"
,
pFD
->
memid
);
ok
(
pFD
->
oVft
==
36
,
"oVft %d
\n
"
,
pFD
->
oVft
);
ITypeInfo_ReleaseFuncDesc
(
pTI
,
pFD
);
}
ITypeInfo_Release
(
pTI
);
ITypeLib_Release
(
pTL
);
return
;
...
...
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