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
f42d9e2e
Commit
f42d9e2e
authored
Jul 28, 2011
by
Jacek Caban
Committed by
Alexandre Julliard
Jul 28, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ieframe: Moved ie.c tests to ieframe.
parent
a8c6fda5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
11 additions
and
5 deletions
+11
-5
configure
configure
+1
-0
configure.ac
configure.ac
+1
-0
Makefile.in
dlls/ieframe/tests/Makefile.in
+7
-0
ie.c
dlls/ieframe/tests/ie.c
+2
-4
Makefile.in
dlls/shdocvw/tests/Makefile.in
+0
-1
No files found.
configure
View file @
f42d9e2e
...
...
@@ -14888,6 +14888,7 @@ wine_fn_config_dll httpapi enable_httpapi
wine_fn_config_dll iccvid enable_iccvid po
wine_fn_config_dll icmp enable_icmp
wine_fn_config_dll ieframe enable_ieframe implib,po
wine_fn_config_test dlls/ieframe/tests ieframe_test
wine_fn_config_dll ifsmgr.vxd enable_win16
wine_fn_config_dll imaadp32.acm enable_imaadp32_acm
wine_fn_config_dll imagehlp enable_imagehlp implib
...
...
configure.ac
View file @
f42d9e2e
...
...
@@ -2528,6 +2528,7 @@ WINE_CONFIG_DLL(httpapi)
WINE_CONFIG_DLL(iccvid,,[po])
WINE_CONFIG_DLL(icmp)
WINE_CONFIG_DLL(ieframe,,[implib,po])
WINE_CONFIG_TEST(dlls/ieframe/tests)
WINE_CONFIG_DLL(ifsmgr.vxd,enable_win16)
WINE_CONFIG_DLL(imaadp32.acm)
WINE_CONFIG_DLL(imagehlp,,[implib])
...
...
dlls/ieframe/tests/Makefile.in
0 → 100644
View file @
f42d9e2e
TESTDLL
=
ieframe.dll
IMPORTS
=
ole32
C_SRCS
=
\
ie.c
@MAKE_TEST_RULES@
dlls/
shdocvw
/tests/ie.c
→
dlls/
ieframe
/tests/ie.c
View file @
f42d9e2e
...
...
@@ -24,6 +24,7 @@
#include "windef.h"
#include "winbase.h"
#include "initguid.h"
#include "ole2.h"
#include "exdisp.h"
...
...
@@ -58,10 +59,7 @@ static void test_InternetExplorer(void)
hres
=
CoCreateInstance
(
&
CLSID_InternetExplorer
,
NULL
,
CLSCTX_SERVER
,
&
IID_IUnknown
,
(
void
**
)
&
unk
);
if
(
FAILED
(
hres
))
{
win_skip
(
"Could not create InternetExplorer object
\n
"
);
return
;
}
ok
(
hres
==
S_OK
,
"Could not create InternetExplorer instance: %08x
\n
"
,
hres
);
hres
=
IUnknown_QueryInterface
(
unk
,
&
IID_IWebBrowser2
,
(
void
**
)
&
wb
);
ok
(
hres
==
S_OK
,
"Could not get IWebBrowser2 interface: %08x
\n
"
,
hres
);
...
...
dlls/shdocvw/tests/Makefile.in
View file @
f42d9e2e
...
...
@@ -2,7 +2,6 @@ TESTDLL = shdocvw.dll
IMPORTS
=
shell32 ole32 oleaut32 user32 gdi32 advapi32
C_SRCS
=
\
ie.c
\
intshcut.c
\
shdocvw.c
\
shortcut.c
\
...
...
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