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
0cdb3c97
Commit
0cdb3c97
authored
Aug 09, 2005
by
Jacek Caban
Committed by
Alexandre Julliard
Aug 09, 2005
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
- Beginning implementation of true IPersistMoniker::Load.
- THIS macros cleanup.
parent
31dd4af5
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
5 additions
and
1 deletion
+5
-1
Makefile.in
dlls/mshtml/Makefile.in
+1
-1
mshtml_private.h
dlls/mshtml/mshtml_private.h
+4
-0
persist.c
dlls/mshtml/persist.c
+0
-0
No files found.
dlls/mshtml/Makefile.in
View file @
0cdb3c97
...
...
@@ -4,7 +4,7 @@ SRCDIR = @srcdir@
VPATH
=
@srcdir@
MODULE
=
mshtml.dll
IMPORTLIB
=
libmshtml.
$(IMPLIBEXT)
IMPORTS
=
ole32 user32 gdi32 advapi32 kernel32 ntdll
IMPORTS
=
urlmon
ole32 user32 gdi32 advapi32 kernel32 ntdll
EXTRALIBS
=
$(LIBUNICODE)
-lstrmiids
-luuid
EXTRADEFS
=
-DCOM_NO_WINDOWS_H
...
...
dlls/mshtml/mshtml_private.h
View file @
0cdb3c97
...
...
@@ -26,6 +26,7 @@
#define NS_SUCCEEDED(res) (!NS_FAILED(res))
typedef
struct
NSContainer
NSContainer
;
typedef
struct
BindStatusCallback
BindStatusCallback
;
typedef
struct
{
const
IHTMLDocument2Vtbl
*
lpHTMLDocument2Vtbl
;
...
...
@@ -56,6 +57,8 @@ typedef struct {
BOOL
in_place_active
;
BOOL
ui_active
;
BOOL
has_key_path
;
BindStatusCallback
*
status_callback
;
}
HTMLDocument
;
struct
NSContainer
{
...
...
@@ -86,6 +89,7 @@ struct NSContainer {
#define SERVPROV(x) ((IServiceProvider*) &(x)->lpServiceProviderVtbl)
#define CMDTARGET(x) ((IOleCommandTarget*) &(x)->lpOleCommandTargetVtbl)
#define CONTROL(x) ((IOleControl*) &(x)->lpOleControlVtbl)
#define STATUSCLB(x) ((IBindStatusCallback*) &(x)->lpBindStatusCallbackVtbl)
#define DEFINE_THIS(cls,ifc,iface) ((cls*)((BYTE*)(iface)-offsetof(cls,lp ## ifc ## Vtbl)))
...
...
dlls/mshtml/persist.c
View file @
0cdb3c97
This diff is collapsed.
Click to expand it.
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