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
22be9fbc
Commit
22be9fbc
authored
Jun 12, 2005
by
Marcus Meissner
Committed by
Alexandre Julliard
Jun 12, 2005
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Move static variables out of header file, also the local interface
implementations.
parent
6b3dc57b
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
25 additions
and
29 deletions
+25
-29
events.c
dlls/shdocvw/events.c
+1
-0
oleobject.c
dlls/shdocvw/oleobject.c
+24
-0
shdocvw.h
dlls/shdocvw/shdocvw.h
+0
-29
No files found.
dlls/shdocvw/events.c
View file @
22be9fbc
...
...
@@ -27,6 +27,7 @@
WINE_DEFAULT_DEBUG_CHANNEL
(
shdocvw
);
static
IConnectionPointImpl
SHDOCVW_ConnectionPoint
;
static
const
GUID
IID_INotifyDBEvents
=
{
0xdb526cc0
,
0xd188
,
0x11cd
,
{
0xad
,
0x48
,
0x00
,
0xaa
,
0x00
,
0x3c
,
0x9c
,
0xb6
}
};
...
...
dlls/shdocvw/oleobject.c
View file @
22be9fbc
...
...
@@ -30,6 +30,30 @@
WINE_DEFAULT_DEBUG_CHANNEL
(
shdocvw
);
/**********************************************************************
* IOleControl declaration for SHDOCVW.DLL
*/
typedef
struct
{
/* IUnknown fields */
const
IOleControlVtbl
*
lpVtbl
;
DWORD
ref
;
}
IOleControlImpl
;
static
IOleControlImpl
SHDOCVW_OleControl
;
/**********************************************************************
* IOleInPlaceObject declaration for SHDOCVW.DLL
*/
typedef
struct
{
/* IUnknown fields */
const
IOleInPlaceObjectVtbl
*
lpVtbl
;
DWORD
ref
;
}
IOleInPlaceObjectImpl
;
static
IOleInPlaceObjectImpl
SHDOCVW_OleInPlaceObject
;
/**********************************************************************
* Implement the IOleObject interface for the web browser component
*
* Based on DefaultHandler code in dlls/ole32/defaulthandler.c.
...
...
dlls/shdocvw/shdocvw.h
View file @
22be9fbc
...
...
@@ -60,33 +60,6 @@ typedef struct
extern
IOleObjectImpl
SHDOCVW_OleObject
;
/**********************************************************************
* IOleInPlaceObject declaration for SHDOCVW.DLL
*/
typedef
struct
{
/* IUnknown fields */
const
IOleInPlaceObjectVtbl
*
lpVtbl
;
DWORD
ref
;
}
IOleInPlaceObjectImpl
;
extern
IOleInPlaceObjectImpl
SHDOCVW_OleInPlaceObject
;
/**********************************************************************
* IOleControl declaration for SHDOCVW.DLL
*/
typedef
struct
{
/* IUnknown fields */
const
IOleControlVtbl
*
lpVtbl
;
DWORD
ref
;
}
IOleControlImpl
;
extern
IOleControlImpl
SHDOCVW_OleControl
;
/**********************************************************************
* IWebBrowser declaration for SHDOCVW.DLL
*/
...
...
@@ -188,8 +161,6 @@ typedef struct
DWORD
ref
;
}
IConnectionPointImpl
;
extern
IConnectionPointImpl
SHDOCVW_ConnectionPoint
;
/**********************************************************************
* Dll lifetime tracking declaration for shdocvw.dll
*/
...
...
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