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
09a1a3fd
Commit
09a1a3fd
authored
Apr 10, 2006
by
Dmitry Timoshkov
Committed by
Alexandre Julliard
Apr 10, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
shdocvw: Constify IExplore OLE vtables.
parent
3afe4208
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
7 deletions
+7
-7
iexplore.c
dlls/shdocvw/iexplore.c
+7
-7
No files found.
dlls/shdocvw/iexplore.c
View file @
09a1a3fd
...
...
@@ -37,7 +37,7 @@
WINE_DEFAULT_DEBUG_CHANNEL
(
shdocvw
);
typedef
struct
tag_ieoc
{
IOleContainerVtbl
*
lpVtbl
;
const
IOleContainerVtbl
*
lpVtbl
;
LONG
ref
;
}
ieoc
;
...
...
@@ -99,7 +99,7 @@ static HRESULT WINAPI ic_LockContainer(IOleContainer *iface, BOOL fLock)
return
E_NOTIMPL
;
}
static
IOleContainerVtbl
ocVtbl
=
static
const
IOleContainerVtbl
ocVtbl
=
{
ic_QueryInterface
,
ic_AddRef
,
...
...
@@ -128,8 +128,8 @@ static IOleContainer * get_container(void)
/**********************/
typedef
struct
tag_iecs
{
IOleClientSiteVtbl
*
lpVtbl
;
IOleInPlaceSiteVtbl
*
lpInPlaceVtbl
;
const
IOleClientSiteVtbl
*
lpVtbl
;
const
IOleInPlaceSiteVtbl
*
lpInPlaceVtbl
;
LONG
ref
;
IOleContainer
*
container
;
HWND
hwnd
;
...
...
@@ -248,7 +248,7 @@ static HRESULT WINAPI cs_RequestNewObjectLayout(IOleClientSite *iface)
return
E_NOTIMPL
;
}
st
ruc
t
IOleClientSiteVtbl
csVtbl
=
st
atic
cons
t
IOleClientSiteVtbl
csVtbl
=
{
cs_QueryInterface
,
cs_AddRef
,
...
...
@@ -362,7 +362,7 @@ static HRESULT WINAPI is_DiscardUndoState(IOleInPlaceSite *iface)
return
E_NOTIMPL
;
}
st
ruc
t
IOleInPlaceSiteVtbl
isVtbl
=
st
atic
cons
t
IOleInPlaceSiteVtbl
isVtbl
=
{
is_QueryInterface
,
is_AddRef
,
...
...
@@ -383,7 +383,7 @@ static const WCHAR szIEWinFrame[] = { 'I','E','F','r','a','m','e',0 };
static
LRESULT
iewnd_OnCreate
(
HWND
hwnd
,
LPCREATESTRUCTW
lpcs
)
{
SetWindowLongPtrW
(
hwnd
,
0
,
(
LONG
)
lpcs
->
lpCreateParams
);
SetWindowLongPtrW
(
hwnd
,
0
,
(
LONG
_PTR
)
lpcs
->
lpCreateParams
);
return
0
;
}
...
...
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