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
56aa241b
Commit
56aa241b
authored
Oct 27, 2005
by
Mike McCormack
Committed by
Alexandre Julliard
Oct 27, 2005
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add the IObjectWithSite interface.
parent
d2232bf8
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
74 additions
and
1 deletion
+74
-1
shelllink.c
dlls/shell32/shelllink.c
+74
-1
No files found.
dlls/shell32/shelllink.c
View file @
56aa241b
...
...
@@ -120,6 +120,7 @@ static const IPersistStreamVtbl psvt;
static
const
IShellLinkDataListVtbl
dlvt
;
static
const
IShellExtInitVtbl
eivt
;
static
const
IContextMenuVtbl
cmvt
;
static
const
IObjectWithSiteVtbl
owsvt
;
/* IShellLink Implementation */
...
...
@@ -132,6 +133,7 @@ typedef struct
const
IShellLinkDataListVtbl
*
lpvtblShellLinkDataList
;
const
IShellExtInitVtbl
*
lpvtblShellExtInit
;
const
IContextMenuVtbl
*
lpvtblContextMenu
;
const
IObjectWithSiteVtbl
*
lpvtblObjectWithSite
;
LONG
ref
;
...
...
@@ -154,7 +156,8 @@ typedef struct
LPWSTR
sComponent
;
volume_info
volume
;
BOOL
bDirty
;
BOOL
bDirty
;
IUnknown
*
site
;
}
IShellLinkImpl
;
static
inline
IShellLinkImpl
*
impl_from_IShellLinkW
(
IShellLinkW
*
iface
)
...
...
@@ -187,6 +190,11 @@ static inline IShellLinkImpl *impl_from_IContextMenu( IContextMenu *iface )
return
(
IShellLinkImpl
*
)((
char
*
)
iface
-
FIELD_OFFSET
(
IShellLinkImpl
,
lpvtblContextMenu
));
}
static
inline
IShellLinkImpl
*
impl_from_IObjectWithSite
(
IObjectWithSite
*
iface
)
{
return
(
IShellLinkImpl
*
)((
char
*
)
iface
-
FIELD_OFFSET
(
IShellLinkImpl
,
lpvtblObjectWithSite
));
}
static
HRESULT
ShellLink_UpdatePath
(
LPWSTR
sPathRel
,
LPCWSTR
path
,
LPCWSTR
sWorkDir
,
LPWSTR
*
psPath
);
/* strdup on the process heap */
...
...
@@ -237,6 +245,10 @@ static HRESULT ShellLink_QueryInterface( IShellLinkImpl *This, REFIID riid, LPV
{
*
ppvObj
=
&
(
This
->
lpvtblContextMenu
);
}
else
if
(
IsEqualIID
(
riid
,
&
IID_IObjectWithSite
))
{
*
ppvObj
=
&
(
This
->
lpvtblObjectWithSite
);
}
if
(
*
ppvObj
)
{
...
...
@@ -280,6 +292,9 @@ static ULONG ShellLink_Release( IShellLinkImpl *This )
HeapFree
(
GetProcessHeap
(),
0
,
This
->
sDescription
);
HeapFree
(
GetProcessHeap
(),
0
,
This
->
sPath
);
if
(
This
->
site
)
IUnknown_Release
(
This
->
site
);
if
(
This
->
pPidl
)
ILFree
(
This
->
pPidl
);
...
...
@@ -1172,8 +1187,10 @@ HRESULT WINAPI IShellLink_Constructor( IUnknown *pUnkOuter,
sl
->
lpvtblShellLinkDataList
=
&
dlvt
;
sl
->
lpvtblShellExtInit
=
&
eivt
;
sl
->
lpvtblContextMenu
=
&
cmvt
;
sl
->
lpvtblObjectWithSite
=
&
owsvt
;
sl
->
iShowCmd
=
SW_SHOWNORMAL
;
sl
->
bDirty
=
FALSE
;
sl
->
site
=
NULL
;
TRACE
(
"(%p)->()
\n
"
,
sl
);
...
...
@@ -2396,3 +2413,59 @@ static const IContextMenuVtbl cmvt =
ShellLink_InvokeCommand
,
ShellLink_GetCommandString
};
static
HRESULT
WINAPI
ShellLink_ObjectWithSite_QueryInterface
(
IObjectWithSite
*
iface
,
REFIID
riid
,
void
**
ppvObject
)
{
IShellLinkImpl
*
This
=
impl_from_IObjectWithSite
(
iface
);
return
ShellLink_QueryInterface
(
This
,
riid
,
ppvObject
);
}
static
ULONG
WINAPI
ShellLink_ObjectWithSite_AddRef
(
IObjectWithSite
*
iface
)
{
IShellLinkImpl
*
This
=
impl_from_IObjectWithSite
(
iface
);
return
ShellLink_AddRef
(
This
);
}
static
ULONG
WINAPI
ShellLink_ObjectWithSite_Release
(
IObjectWithSite
*
iface
)
{
IShellLinkImpl
*
This
=
impl_from_IObjectWithSite
(
iface
);
return
ShellLink_Release
(
This
);
}
static
HRESULT
WINAPI
ShellLink_GetSite
(
IObjectWithSite
*
iface
,
REFIID
iid
,
void
**
ppvSite
)
{
IShellLinkImpl
*
This
=
impl_from_IObjectWithSite
(
iface
);
TRACE
(
"%p %s %p
\n
"
,
This
,
debugstr_guid
(
iid
),
ppvSite
);
if
(
!
This
->
site
)
return
E_FAIL
;
return
IUnknown_QueryInterface
(
This
->
site
,
iid
,
ppvSite
);
}
static
HRESULT
WINAPI
ShellLink_SetSite
(
IObjectWithSite
*
iface
,
IUnknown
*
punk
)
{
IShellLinkImpl
*
This
=
impl_from_IObjectWithSite
(
iface
);
TRACE
(
"%p %p
\n
"
,
iface
,
punk
);
if
(
punk
)
IUnknown_AddRef
(
punk
);
This
->
site
=
punk
;
return
S_OK
;
}
static
const
IObjectWithSiteVtbl
owsvt
=
{
ShellLink_ObjectWithSite_QueryInterface
,
ShellLink_ObjectWithSite_AddRef
,
ShellLink_ObjectWithSite_Release
,
ShellLink_SetSite
,
ShellLink_GetSite
,
};
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