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
5c15ca13
Commit
5c15ca13
authored
Oct 03, 2012
by
Jacek Caban
Committed by
Alexandre Julliard
Oct 03, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mshtml: Added ActiveX event binding test.
parent
eda756db
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
63 additions
and
0 deletions
+63
-0
.gitignore
.gitignore
+2
-0
Makefile.in
dlls/mshtml/tests/Makefile.in
+3
-0
activex.c
dlls/mshtml/tests/activex.c
+0
-0
rsrc.rc
dlls/mshtml/tests/rsrc.rc
+3
-0
test_tlb.idl
dlls/mshtml/tests/test_tlb.idl
+55
-0
No files found.
.gitignore
View file @
5c15ca13
...
...
@@ -72,6 +72,8 @@ dlls/msdaps/msdaps_p.c
dlls/msdaps/row_server.h
dlls/msdaps/row_server_p.c
dlls/mshtml/nsiface.h
dlls/mshtml/tests/test_tlb.h
dlls/mshtml/tests/test_tlb.tlb
dlls/msi/cond.tab.c
dlls/msi/cond.tab.h
dlls/msi/msiserver.h
...
...
dlls/mshtml/tests/Makefile.in
View file @
5c15ca13
...
...
@@ -12,6 +12,9 @@ C_SRCS = \
script.c
\
style.c
IDL_TLB_SRCS
=
test_tlb.idl
IDL_H_SRCS
=
test_tlb.idl
RC_SRCS
=
rsrc.rc
@MAKE_TEST_RULES@
dlls/mshtml/tests/activex.c
View file @
5c15ca13
This diff is collapsed.
Click to expand it.
dlls/mshtml/tests/rsrc.rc
View file @
5c15ca13
...
...
@@ -27,3 +27,6 @@ vbtest.html HTML "vbtest.html"
/* @makedep: events.html */
events.html HTML "events.html"
/* @makedep: test_tlb.tlb */
1 TYPELIB test_tlb.tlb
dlls/mshtml/tests/test_tlb.idl
0 → 100644
View file @
5c15ca13
/*
*
Copyright
2012
Jacek
Caban
for
CodeWeavers
*
*
This
library
is
free
software
; you can redistribute it and/or
*
modify
it
under
the
terms
of
the
GNU
Lesser
General
Public
*
License
as
published
by
the
Free
Software
Foundation
; either
*
version
2.1
of
the
License
,
or
(
at
your
option
)
any
later
version
.
*
*
This
library
is
distributed
in
the
hope
that
it
will
be
useful
,
*
but
WITHOUT
ANY
WARRANTY
; without even the implied warranty of
*
MERCHANTABILITY
or
FITNESS
FOR
A
PARTICULAR
PURPOSE
.
See
the
GNU
*
Lesser
General
Public
License
for
more
details
.
*
*
You
should
have
received
a
copy
of
the
GNU
Lesser
General
Public
*
License
along
with
this
library
; if not, write to the Free Software
*
Foundation
,
Inc
.
,
51
Franklin
St
,
Fifth
Floor
,
Boston
,
MA
02110
-
1301
,
USA
*/
import
"oaidl.idl"
;
[
version
(
1.0
),
uuid
(
fb137422
-
de47
-
4630
-
848
d
-
a20ccae34725
)
]
library
MSHTMLTest
{
importlib
(
"stdole2.tlb"
)
;
[
oleautomation
,
odl
,
uuid
(
e0d1ce9d
-
e916
-
4723
-
ace5
-
888
c3537de78
),
dual
]
interface
IActiveXTest
:
IDispatch
{
HRESULT
nothinginteresting
()
;
}
[
uuid
(
0
d853edb
-
cb70
-447e-9
d8a
-
b9661c5da56f
)
]
dispinterface
DispActiveXTest
{
properties
:
methods
:
[
id
(
1
)
]
long
testfunc
()
;
[
id
(
2
)
]
long
testfunc2
(
long
a
,
long
b
)
;
}
[
uuid
(
ba9d587b
-
1
aad
-
4192
-
a29a
-
99b
d5f7482c3
)
]
coclass
ActiveXTest
{
[
default
]
interface
IActiveXTest
;
[
source
,
default
]
interface
DispActiveXTest
;
}
}
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