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
908d8333
Commit
908d8333
authored
Jul 31, 2011
by
Jacek Caban
Committed by
Alexandre Julliard
Aug 01, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ieframe: Moved classes registration to ieframe.
parent
60f65e33
Hide whitespace changes
Inline
Side-by-side
Showing
10 changed files
with
43 additions
and
42 deletions
+43
-42
Makefile.in
dlls/ieframe/Makefile.in
+1
-0
ieframe.rc
dlls/ieframe/ieframe.rc
+3
-0
ieframe.rgs
dlls/ieframe/ieframe.rgs
+1
-1
ieframe_main.c
dlls/ieframe/ieframe_main.c
+5
-4
ieframe_v1.idl
dlls/ieframe/ieframe_v1.idl
+30
-0
Makefile.in
dlls/shdocvw/Makefile.in
+0
-1
factory.c
dlls/shdocvw/factory.c
+2
-3
shdocvw.rc
dlls/shdocvw/shdocvw.rc
+0
-3
shdocvw_v1.idl
dlls/shdocvw/shdocvw_v1.idl
+0
-30
wine.inf.in
tools/wine.inf.in
+1
-0
No files found.
dlls/ieframe/Makefile.in
View file @
908d8333
...
...
@@ -48,5 +48,6 @@ SVG_SRCS = \
ietoolbar.svg
IDL_TLB_SRCS
=
ieframe_v1.idl
IDL_R_SRCS
=
ieframe_v1.idl
@MAKE_DLL_RULES@
dlls/ieframe/ieframe.rc
View file @
908d8333
...
...
@@ -90,3 +90,6 @@ LANGUAGE LANG_NEUTRAL, SUBLANG_NEUTRAL
/* @makedep: ietoolbar.bmp */
IDB_IETOOLBAR BITMAP ietoolbar.bmp
/* @makedep: ieframe.rgs */
2 WINE_REGISTRY ieframe.rgs
dlls/
shdocvw/shdocvw
.rgs
→
dlls/
ieframe/ieframe
.rgs
View file @
908d8333
...
...
@@ -48,7 +48,7 @@ HKCR
{
open
{
command = s 'rundll32.exe
shdocvw
.dll,OpenURL %%l'
command = s 'rundll32.exe
ieframe
.dll,OpenURL %%l'
}
print
{
...
...
dlls/ieframe/ieframe_main.c
View file @
908d8333
...
...
@@ -18,6 +18,7 @@
#include "ieframe.h"
#include "rpcproxy.h"
#include "shlguid.h"
#include "isguids.h"
...
...
@@ -277,8 +278,8 @@ HRESULT WINAPI DllCanUnloadNow(void)
*/
HRESULT
WINAPI
DllRegisterServer
(
void
)
{
FIXM
E
(
"()
\n
"
);
return
S_OK
;
TRAC
E
(
"()
\n
"
);
return
__wine_register_resources
(
ieframe_instance
,
NULL
)
;
}
/***********************************************************************
...
...
@@ -286,6 +287,6 @@ HRESULT WINAPI DllRegisterServer(void)
*/
HRESULT
WINAPI
DllUnregisterServer
(
void
)
{
FIXM
E
(
"()
\n
"
);
return
S_OK
;
TRAC
E
(
"()
\n
"
);
return
__wine_unregister_resources
(
ieframe_instance
,
NULL
)
;
}
dlls/ieframe/ieframe_v1.idl
View file @
908d8333
...
...
@@ -17,3 +17,33 @@
*/
#
include
"exdisp.idl"
[
threading
(
apartment
),
uuid
(
871
c5380
-
42
a0
-
1069
-
a2ea
-
08002b30309
d
)
]
coclass
Internet
{
}
[
helpstring
(
"Microsoft Url History Service"
),
threading
(
apartment
),
uuid
(
3
c374a40
-
bae4
-
11
cf
-
bf7d
-
00
aa006946ee
)
]
coclass
CUrlHistory
{
interface
IUrlHistoryStg2
; }
[
helpstring
(
"Task Bar Communication"
),
threading
(
apartment
),
uuid
(
56
fdf344
-
fd6d
-
11
d0
-
958
a
-
006097
c9a090
)
]
coclass
TaskbarList
{
interface
ITaskbarList
; }
[
helpstring
(
"Internet Shortcut"
),
threading
(
apartment
),
progid
(
"InternetShortcut"
),
uuid
(
fbf23b40
-
e3f0
-
101b
-
8488
-
00
aa003e56f8
)
]
coclass
InternetShortcut
{
interface
IUniformResourceLocatorA
;
interface
IUniformResourceLocatorW
;
interface
IPersistFile
;
interface
IPropertySetStorage
;
}
dlls/shdocvw/Makefile.in
View file @
908d8333
...
...
@@ -13,6 +13,5 @@ RC_SRCS = \
shdocvw.rc
IDL_TLB_SRCS
=
shdocvw_v1.idl
IDL_R_SRCS
=
shdocvw_v1.idl
@MAKE_DLL_RULES@
dlls/shdocvw/factory.c
View file @
908d8333
...
...
@@ -23,7 +23,6 @@
#include "shdocvw.h"
#include "winreg.h"
#include "rpcproxy.h"
#include "isguids.h"
#include "winver.h"
...
...
@@ -79,7 +78,7 @@ HRESULT WINAPI DllGetClassObject(REFCLSID rclsid, REFIID riid, void **ppv)
HRESULT
WINAPI
DllRegisterServer
(
void
)
{
TRACE
(
"
\n
"
);
return
__wine_register_resources
(
shdocvw_hinstance
,
NULL
)
;
return
S_OK
;
}
/***********************************************************************
...
...
@@ -88,7 +87,7 @@ HRESULT WINAPI DllRegisterServer(void)
HRESULT
WINAPI
DllUnregisterServer
(
void
)
{
TRACE
(
"
\n
"
);
return
__wine_unregister_resources
(
shdocvw_hinstance
,
NULL
)
;
return
S_OK
;
}
/******************************************************************
...
...
dlls/shdocvw/shdocvw.rc
View file @
908d8333
...
...
@@ -32,6 +32,3 @@ LANGUAGE LANG_NEUTRAL, SUBLANG_NEUTRAL
/* @makedep: shdocvw_v1.tlb */
1 TYPELIB shdocvw_v1.tlb
/* @makedep: shdocvw.rgs */
2 WINE_REGISTRY shdocvw.rgs
dlls/shdocvw/shdocvw_v1.idl
View file @
908d8333
...
...
@@ -17,33 +17,3 @@
*/
#
include
"exdisp.idl"
[
threading
(
apartment
),
uuid
(
871
c5380
-
42
a0
-
1069
-
a2ea
-
08002b30309
d
)
]
coclass
Internet
{
}
[
helpstring
(
"Microsoft Url History Service"
),
threading
(
apartment
),
uuid
(
3
c374a40
-
bae4
-
11
cf
-
bf7d
-
00
aa006946ee
)
]
coclass
CUrlHistory
{
interface
IUrlHistoryStg2
; }
[
helpstring
(
"Task Bar Communication"
),
threading
(
apartment
),
uuid
(
56
fdf344
-
fd6d
-
11
d0
-
958
a
-
006097
c9a090
)
]
coclass
TaskbarList
{
interface
ITaskbarList
; }
[
helpstring
(
"Internet Shortcut"
),
threading
(
apartment
),
progid
(
"InternetShortcut"
),
uuid
(
fbf23b40
-
e3f0
-
101b
-
8488
-
00
aa003e56f8
)
]
coclass
InternetShortcut
{
interface
IUniformResourceLocatorA
;
interface
IUniformResourceLocatorW
;
interface
IPersistFile
;
interface
IPropertySetStorage
;
}
tools/wine.inf.in
View file @
908d8333
...
...
@@ -2527,6 +2527,7 @@ HKLM,%CurrentVersion%\Telephony\Country List\998,"SameAreaRule",,"G"
11,,hhctrl.ocx,1
11,,hlink.dll,1
11,,hnetcfg.dll,1
11,,ieframe.dll,1
11,,inetcomm.dll,1
11,,infosoft.dll,1
11,,inseng.dll,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