Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
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-winehq
Commits
27eee424
Commit
27eee424
authored
Nov 28, 2022
by
Alex Henrie
Committed by
Alexandre Julliard
Nov 29, 2022
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
shell32: Rename ShellItem to struct shell_item.
To avoid confusion or conflict with the ShellItem struct defined in the Windows headers.
parent
12c28aa2
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
41 additions
and
41 deletions
+41
-41
shellitem.c
dlls/shell32/shellitem.c
+41
-41
No files found.
dlls/shell32/shellitem.c
View file @
27eee424
...
@@ -34,32 +34,32 @@
...
@@ -34,32 +34,32 @@
WINE_DEFAULT_DEBUG_CHANNEL
(
shell
);
WINE_DEFAULT_DEBUG_CHANNEL
(
shell
);
typedef
struct
_ShellI
tem
{
struct
shell_i
tem
{
IShellItem2
IShellItem2_iface
;
IShellItem2
IShellItem2_iface
;
LONG
ref
;
LONG
ref
;
LPITEMIDLIST
pidl
;
LPITEMIDLIST
pidl
;
IPersistIDList
IPersistIDList_iface
;
IPersistIDList
IPersistIDList_iface
;
IShellItemImageFactory
IShellItemImageFactory_iface
;
IShellItemImageFactory
IShellItemImageFactory_iface
;
}
ShellItem
;
};
typedef
struct
_CustomDestinationList
{
typedef
struct
_CustomDestinationList
{
ICustomDestinationList
ICustomDestinationList_iface
;
ICustomDestinationList
ICustomDestinationList_iface
;
LONG
ref
;
LONG
ref
;
}
CustomDestinationList
;
}
CustomDestinationList
;
static
inline
ShellI
tem
*
impl_from_IShellItem2
(
IShellItem2
*
iface
)
static
struct
shell_i
tem
*
impl_from_IShellItem2
(
IShellItem2
*
iface
)
{
{
return
CONTAINING_RECORD
(
iface
,
ShellI
tem
,
IShellItem2_iface
);
return
CONTAINING_RECORD
(
iface
,
struct
shell_i
tem
,
IShellItem2_iface
);
}
}
static
inline
ShellItem
*
impl_from_IPersistIDList
(
IPersistIDList
*
iface
)
static
struct
shell_item
*
impl_from_IPersistIDList
(
IPersistIDList
*
iface
)
{
{
return
CONTAINING_RECORD
(
iface
,
ShellI
tem
,
IPersistIDList_iface
);
return
CONTAINING_RECORD
(
iface
,
struct
shell_i
tem
,
IPersistIDList_iface
);
}
}
static
inline
ShellItem
*
impl_from_IShellItemImageFactory
(
IShellItemImageFactory
*
iface
)
static
struct
shell_item
*
impl_from_IShellItemImageFactory
(
IShellItemImageFactory
*
iface
)
{
{
return
CONTAINING_RECORD
(
iface
,
ShellI
tem
,
IShellItemImageFactory_iface
);
return
CONTAINING_RECORD
(
iface
,
struct
shell_i
tem
,
IShellItemImageFactory_iface
);
}
}
static
inline
CustomDestinationList
*
impl_from_ICustomDestinationList
(
ICustomDestinationList
*
iface
)
static
inline
CustomDestinationList
*
impl_from_ICustomDestinationList
(
ICustomDestinationList
*
iface
)
...
@@ -70,7 +70,7 @@ static inline CustomDestinationList *impl_from_ICustomDestinationList( ICustomDe
...
@@ -70,7 +70,7 @@ static inline CustomDestinationList *impl_from_ICustomDestinationList( ICustomDe
static
HRESULT
WINAPI
ShellItem_QueryInterface
(
IShellItem2
*
iface
,
REFIID
riid
,
static
HRESULT
WINAPI
ShellItem_QueryInterface
(
IShellItem2
*
iface
,
REFIID
riid
,
void
**
ppv
)
void
**
ppv
)
{
{
ShellI
tem
*
This
=
impl_from_IShellItem2
(
iface
);
struct
shell_i
tem
*
This
=
impl_from_IShellItem2
(
iface
);
TRACE
(
"(%p, %s, %p)
\n
"
,
iface
,
debugstr_guid
(
riid
),
ppv
);
TRACE
(
"(%p, %s, %p)
\n
"
,
iface
,
debugstr_guid
(
riid
),
ppv
);
...
@@ -101,7 +101,7 @@ static HRESULT WINAPI ShellItem_QueryInterface(IShellItem2 *iface, REFIID riid,
...
@@ -101,7 +101,7 @@ static HRESULT WINAPI ShellItem_QueryInterface(IShellItem2 *iface, REFIID riid,
static
ULONG
WINAPI
ShellItem_AddRef
(
IShellItem2
*
iface
)
static
ULONG
WINAPI
ShellItem_AddRef
(
IShellItem2
*
iface
)
{
{
ShellI
tem
*
This
=
impl_from_IShellItem2
(
iface
);
struct
shell_i
tem
*
This
=
impl_from_IShellItem2
(
iface
);
ULONG
ref
=
InterlockedIncrement
(
&
This
->
ref
);
ULONG
ref
=
InterlockedIncrement
(
&
This
->
ref
);
TRACE
(
"(%p), new refcount=%li
\n
"
,
iface
,
ref
);
TRACE
(
"(%p), new refcount=%li
\n
"
,
iface
,
ref
);
...
@@ -111,7 +111,7 @@ static ULONG WINAPI ShellItem_AddRef(IShellItem2 *iface)
...
@@ -111,7 +111,7 @@ static ULONG WINAPI ShellItem_AddRef(IShellItem2 *iface)
static
ULONG
WINAPI
ShellItem_Release
(
IShellItem2
*
iface
)
static
ULONG
WINAPI
ShellItem_Release
(
IShellItem2
*
iface
)
{
{
ShellI
tem
*
This
=
impl_from_IShellItem2
(
iface
);
struct
shell_i
tem
*
This
=
impl_from_IShellItem2
(
iface
);
ULONG
ref
=
InterlockedDecrement
(
&
This
->
ref
);
ULONG
ref
=
InterlockedDecrement
(
&
This
->
ref
);
TRACE
(
"(%p), new refcount=%li
\n
"
,
iface
,
ref
);
TRACE
(
"(%p), new refcount=%li
\n
"
,
iface
,
ref
);
...
@@ -125,7 +125,7 @@ static ULONG WINAPI ShellItem_Release(IShellItem2 *iface)
...
@@ -125,7 +125,7 @@ static ULONG WINAPI ShellItem_Release(IShellItem2 *iface)
return
ref
;
return
ref
;
}
}
static
HRESULT
ShellItem_get_parent_pidl
(
ShellItem
*
This
,
LPITEMIDLIST
*
parent_pidl
)
static
HRESULT
ShellItem_get_parent_pidl
(
struct
shell_item
*
This
,
ITEMIDLIST
*
*
parent_pidl
)
{
{
*
parent_pidl
=
ILClone
(
This
->
pidl
);
*
parent_pidl
=
ILClone
(
This
->
pidl
);
if
(
*
parent_pidl
)
if
(
*
parent_pidl
)
...
@@ -146,7 +146,7 @@ static HRESULT ShellItem_get_parent_pidl(ShellItem *This, LPITEMIDLIST *parent_p
...
@@ -146,7 +146,7 @@ static HRESULT ShellItem_get_parent_pidl(ShellItem *This, LPITEMIDLIST *parent_p
}
}
}
}
static
HRESULT
ShellItem_get_parent_shellfolder
(
ShellI
tem
*
This
,
IShellFolder
**
ppsf
)
static
HRESULT
ShellItem_get_parent_shellfolder
(
struct
shell_i
tem
*
This
,
IShellFolder
**
ppsf
)
{
{
LPITEMIDLIST
parent_pidl
;
LPITEMIDLIST
parent_pidl
;
IShellFolder
*
desktop
;
IShellFolder
*
desktop
;
...
@@ -174,7 +174,7 @@ static HRESULT ShellItem_get_parent_shellfolder(ShellItem *This, IShellFolder **
...
@@ -174,7 +174,7 @@ static HRESULT ShellItem_get_parent_shellfolder(ShellItem *This, IShellFolder **
return
ret
;
return
ret
;
}
}
static
HRESULT
ShellItem_get_shellfolder
(
ShellI
tem
*
This
,
IBindCtx
*
pbc
,
IShellFolder
**
ppsf
)
static
HRESULT
ShellItem_get_shellfolder
(
struct
shell_i
tem
*
This
,
IBindCtx
*
pbc
,
IShellFolder
**
ppsf
)
{
{
IShellFolder
*
desktop
;
IShellFolder
*
desktop
;
HRESULT
ret
;
HRESULT
ret
;
...
@@ -201,7 +201,7 @@ static HRESULT ShellItem_get_shellfolder(ShellItem *This, IBindCtx *pbc, IShellF
...
@@ -201,7 +201,7 @@ static HRESULT ShellItem_get_shellfolder(ShellItem *This, IBindCtx *pbc, IShellF
static
HRESULT
WINAPI
ShellItem_BindToHandler
(
IShellItem2
*
iface
,
IBindCtx
*
pbc
,
static
HRESULT
WINAPI
ShellItem_BindToHandler
(
IShellItem2
*
iface
,
IBindCtx
*
pbc
,
REFGUID
rbhid
,
REFIID
riid
,
void
**
ppvOut
)
REFGUID
rbhid
,
REFIID
riid
,
void
**
ppvOut
)
{
{
ShellI
tem
*
This
=
impl_from_IShellItem2
(
iface
);
struct
shell_i
tem
*
This
=
impl_from_IShellItem2
(
iface
);
HRESULT
ret
;
HRESULT
ret
;
TRACE
(
"(%p,%p,%s,%p,%p)
\n
"
,
iface
,
pbc
,
shdebugstr_guid
(
rbhid
),
riid
,
ppvOut
);
TRACE
(
"(%p,%p,%s,%p,%p)
\n
"
,
iface
,
pbc
,
shdebugstr_guid
(
rbhid
),
riid
,
ppvOut
);
...
@@ -246,7 +246,7 @@ static HRESULT WINAPI ShellItem_BindToHandler(IShellItem2 *iface, IBindCtx *pbc,
...
@@ -246,7 +246,7 @@ static HRESULT WINAPI ShellItem_BindToHandler(IShellItem2 *iface, IBindCtx *pbc,
static
HRESULT
WINAPI
ShellItem_GetParent
(
IShellItem2
*
iface
,
IShellItem
**
ppsi
)
static
HRESULT
WINAPI
ShellItem_GetParent
(
IShellItem2
*
iface
,
IShellItem
**
ppsi
)
{
{
ShellI
tem
*
This
=
impl_from_IShellItem2
(
iface
);
struct
shell_i
tem
*
This
=
impl_from_IShellItem2
(
iface
);
LPITEMIDLIST
parent_pidl
;
LPITEMIDLIST
parent_pidl
;
HRESULT
ret
;
HRESULT
ret
;
...
@@ -265,7 +265,7 @@ static HRESULT WINAPI ShellItem_GetParent(IShellItem2 *iface, IShellItem **ppsi)
...
@@ -265,7 +265,7 @@ static HRESULT WINAPI ShellItem_GetParent(IShellItem2 *iface, IShellItem **ppsi)
static
HRESULT
WINAPI
ShellItem_GetDisplayName
(
IShellItem2
*
iface
,
SIGDN
sigdnName
,
static
HRESULT
WINAPI
ShellItem_GetDisplayName
(
IShellItem2
*
iface
,
SIGDN
sigdnName
,
LPWSTR
*
ppszName
)
LPWSTR
*
ppszName
)
{
{
ShellI
tem
*
This
=
impl_from_IShellItem2
(
iface
);
struct
shell_i
tem
*
This
=
impl_from_IShellItem2
(
iface
);
TRACE
(
"(%p,%x,%p)
\n
"
,
iface
,
sigdnName
,
ppszName
);
TRACE
(
"(%p,%x,%p)
\n
"
,
iface
,
sigdnName
,
ppszName
);
return
SHGetNameFromIDList
(
This
->
pidl
,
sigdnName
,
ppszName
);
return
SHGetNameFromIDList
(
This
->
pidl
,
sigdnName
,
ppszName
);
...
@@ -274,7 +274,7 @@ static HRESULT WINAPI ShellItem_GetDisplayName(IShellItem2 *iface, SIGDN sigdnNa
...
@@ -274,7 +274,7 @@ static HRESULT WINAPI ShellItem_GetDisplayName(IShellItem2 *iface, SIGDN sigdnNa
static
HRESULT
WINAPI
ShellItem_GetAttributes
(
IShellItem2
*
iface
,
SFGAOF
sfgaoMask
,
static
HRESULT
WINAPI
ShellItem_GetAttributes
(
IShellItem2
*
iface
,
SFGAOF
sfgaoMask
,
SFGAOF
*
psfgaoAttribs
)
SFGAOF
*
psfgaoAttribs
)
{
{
ShellI
tem
*
This
=
impl_from_IShellItem2
(
iface
);
struct
shell_i
tem
*
This
=
impl_from_IShellItem2
(
iface
);
IShellFolder
*
parent_folder
;
IShellFolder
*
parent_folder
;
LPITEMIDLIST
child_pidl
;
LPITEMIDLIST
child_pidl
;
HRESULT
ret
;
HRESULT
ret
;
...
@@ -358,7 +358,7 @@ static HRESULT WINAPI ShellItem_Compare(IShellItem2 *iface, IShellItem *oth,
...
@@ -358,7 +358,7 @@ static HRESULT WINAPI ShellItem_Compare(IShellItem2 *iface, IShellItem *oth,
static
HRESULT
WINAPI
ShellItem2_GetPropertyStore
(
IShellItem2
*
iface
,
GETPROPERTYSTOREFLAGS
flags
,
static
HRESULT
WINAPI
ShellItem2_GetPropertyStore
(
IShellItem2
*
iface
,
GETPROPERTYSTOREFLAGS
flags
,
REFIID
riid
,
void
**
ppv
)
REFIID
riid
,
void
**
ppv
)
{
{
ShellI
tem
*
This
=
impl_from_IShellItem2
(
iface
);
struct
shell_i
tem
*
This
=
impl_from_IShellItem2
(
iface
);
FIXME
(
"Stub: %p (%d, %s, %p)
\n
"
,
This
,
flags
,
shdebugstr_guid
(
riid
),
ppv
);
FIXME
(
"Stub: %p (%d, %s, %p)
\n
"
,
This
,
flags
,
shdebugstr_guid
(
riid
),
ppv
);
return
E_NOTIMPL
;
return
E_NOTIMPL
;
}
}
...
@@ -366,7 +366,7 @@ static HRESULT WINAPI ShellItem2_GetPropertyStore(IShellItem2 *iface, GETPROPERT
...
@@ -366,7 +366,7 @@ static HRESULT WINAPI ShellItem2_GetPropertyStore(IShellItem2 *iface, GETPROPERT
static
HRESULT
WINAPI
ShellItem2_GetPropertyStoreWithCreateObject
(
IShellItem2
*
iface
,
static
HRESULT
WINAPI
ShellItem2_GetPropertyStoreWithCreateObject
(
IShellItem2
*
iface
,
GETPROPERTYSTOREFLAGS
flags
,
IUnknown
*
punkCreateObject
,
REFIID
riid
,
void
**
ppv
)
GETPROPERTYSTOREFLAGS
flags
,
IUnknown
*
punkCreateObject
,
REFIID
riid
,
void
**
ppv
)
{
{
ShellI
tem
*
This
=
impl_from_IShellItem2
(
iface
);
struct
shell_i
tem
*
This
=
impl_from_IShellItem2
(
iface
);
FIXME
(
"Stub: %p (%08x, %p, %s, %p)
\n
"
,
FIXME
(
"Stub: %p (%08x, %p, %s, %p)
\n
"
,
This
,
flags
,
punkCreateObject
,
shdebugstr_guid
(
riid
),
ppv
);
This
,
flags
,
punkCreateObject
,
shdebugstr_guid
(
riid
),
ppv
);
return
E_NOTIMPL
;
return
E_NOTIMPL
;
...
@@ -375,7 +375,7 @@ static HRESULT WINAPI ShellItem2_GetPropertyStoreWithCreateObject(IShellItem2 *i
...
@@ -375,7 +375,7 @@ static HRESULT WINAPI ShellItem2_GetPropertyStoreWithCreateObject(IShellItem2 *i
static
HRESULT
WINAPI
ShellItem2_GetPropertyStoreForKeys
(
IShellItem2
*
iface
,
const
PROPERTYKEY
*
rgKeys
,
static
HRESULT
WINAPI
ShellItem2_GetPropertyStoreForKeys
(
IShellItem2
*
iface
,
const
PROPERTYKEY
*
rgKeys
,
UINT
cKeys
,
GETPROPERTYSTOREFLAGS
flags
,
REFIID
riid
,
void
**
ppv
)
UINT
cKeys
,
GETPROPERTYSTOREFLAGS
flags
,
REFIID
riid
,
void
**
ppv
)
{
{
ShellI
tem
*
This
=
impl_from_IShellItem2
(
iface
);
struct
shell_i
tem
*
This
=
impl_from_IShellItem2
(
iface
);
FIXME
(
"Stub: %p (%p, %d, %08x, %s, %p)
\n
"
,
FIXME
(
"Stub: %p (%p, %d, %08x, %s, %p)
\n
"
,
This
,
rgKeys
,
cKeys
,
flags
,
shdebugstr_guid
(
riid
),
ppv
);
This
,
rgKeys
,
cKeys
,
flags
,
shdebugstr_guid
(
riid
),
ppv
);
return
E_NOTIMPL
;
return
E_NOTIMPL
;
...
@@ -384,70 +384,70 @@ static HRESULT WINAPI ShellItem2_GetPropertyStoreForKeys(IShellItem2 *iface, con
...
@@ -384,70 +384,70 @@ static HRESULT WINAPI ShellItem2_GetPropertyStoreForKeys(IShellItem2 *iface, con
static
HRESULT
WINAPI
ShellItem2_GetPropertyDescriptionList
(
IShellItem2
*
iface
,
static
HRESULT
WINAPI
ShellItem2_GetPropertyDescriptionList
(
IShellItem2
*
iface
,
REFPROPERTYKEY
keyType
,
REFIID
riid
,
void
**
ppv
)
REFPROPERTYKEY
keyType
,
REFIID
riid
,
void
**
ppv
)
{
{
ShellI
tem
*
This
=
impl_from_IShellItem2
(
iface
);
struct
shell_i
tem
*
This
=
impl_from_IShellItem2
(
iface
);
FIXME
(
"Stub: %p (%p, %s, %p)
\n
"
,
This
,
keyType
,
debugstr_guid
(
riid
),
ppv
);
FIXME
(
"Stub: %p (%p, %s, %p)
\n
"
,
This
,
keyType
,
debugstr_guid
(
riid
),
ppv
);
return
E_NOTIMPL
;
return
E_NOTIMPL
;
}
}
static
HRESULT
WINAPI
ShellItem2_Update
(
IShellItem2
*
iface
,
IBindCtx
*
pbc
)
static
HRESULT
WINAPI
ShellItem2_Update
(
IShellItem2
*
iface
,
IBindCtx
*
pbc
)
{
{
ShellI
tem
*
This
=
impl_from_IShellItem2
(
iface
);
struct
shell_i
tem
*
This
=
impl_from_IShellItem2
(
iface
);
FIXME
(
"Stub: %p (%p)
\n
"
,
This
,
pbc
);
FIXME
(
"Stub: %p (%p)
\n
"
,
This
,
pbc
);
return
E_NOTIMPL
;
return
E_NOTIMPL
;
}
}
static
HRESULT
WINAPI
ShellItem2_GetProperty
(
IShellItem2
*
iface
,
REFPROPERTYKEY
key
,
PROPVARIANT
*
ppropvar
)
static
HRESULT
WINAPI
ShellItem2_GetProperty
(
IShellItem2
*
iface
,
REFPROPERTYKEY
key
,
PROPVARIANT
*
ppropvar
)
{
{
ShellI
tem
*
This
=
impl_from_IShellItem2
(
iface
);
struct
shell_i
tem
*
This
=
impl_from_IShellItem2
(
iface
);
FIXME
(
"Stub: %p (%p, %p)
\n
"
,
This
,
key
,
ppropvar
);
FIXME
(
"Stub: %p (%p, %p)
\n
"
,
This
,
key
,
ppropvar
);
return
E_NOTIMPL
;
return
E_NOTIMPL
;
}
}
static
HRESULT
WINAPI
ShellItem2_GetCLSID
(
IShellItem2
*
iface
,
REFPROPERTYKEY
key
,
CLSID
*
pclsid
)
static
HRESULT
WINAPI
ShellItem2_GetCLSID
(
IShellItem2
*
iface
,
REFPROPERTYKEY
key
,
CLSID
*
pclsid
)
{
{
ShellI
tem
*
This
=
impl_from_IShellItem2
(
iface
);
struct
shell_i
tem
*
This
=
impl_from_IShellItem2
(
iface
);
FIXME
(
"Stub: %p (%p, %p)
\n
"
,
This
,
key
,
pclsid
);
FIXME
(
"Stub: %p (%p, %p)
\n
"
,
This
,
key
,
pclsid
);
return
E_NOTIMPL
;
return
E_NOTIMPL
;
}
}
static
HRESULT
WINAPI
ShellItem2_GetFileTime
(
IShellItem2
*
iface
,
REFPROPERTYKEY
key
,
FILETIME
*
pft
)
static
HRESULT
WINAPI
ShellItem2_GetFileTime
(
IShellItem2
*
iface
,
REFPROPERTYKEY
key
,
FILETIME
*
pft
)
{
{
ShellI
tem
*
This
=
impl_from_IShellItem2
(
iface
);
struct
shell_i
tem
*
This
=
impl_from_IShellItem2
(
iface
);
FIXME
(
"Stub: %p (%p, %p)
\n
"
,
This
,
key
,
pft
);
FIXME
(
"Stub: %p (%p, %p)
\n
"
,
This
,
key
,
pft
);
return
E_NOTIMPL
;
return
E_NOTIMPL
;
}
}
static
HRESULT
WINAPI
ShellItem2_GetInt32
(
IShellItem2
*
iface
,
REFPROPERTYKEY
key
,
int
*
pi
)
static
HRESULT
WINAPI
ShellItem2_GetInt32
(
IShellItem2
*
iface
,
REFPROPERTYKEY
key
,
int
*
pi
)
{
{
ShellI
tem
*
This
=
impl_from_IShellItem2
(
iface
);
struct
shell_i
tem
*
This
=
impl_from_IShellItem2
(
iface
);
FIXME
(
"Stub: %p (%p, %p)
\n
"
,
This
,
key
,
pi
);
FIXME
(
"Stub: %p (%p, %p)
\n
"
,
This
,
key
,
pi
);
return
E_NOTIMPL
;
return
E_NOTIMPL
;
}
}
static
HRESULT
WINAPI
ShellItem2_GetString
(
IShellItem2
*
iface
,
REFPROPERTYKEY
key
,
LPWSTR
*
ppsz
)
static
HRESULT
WINAPI
ShellItem2_GetString
(
IShellItem2
*
iface
,
REFPROPERTYKEY
key
,
LPWSTR
*
ppsz
)
{
{
ShellI
tem
*
This
=
impl_from_IShellItem2
(
iface
);
struct
shell_i
tem
*
This
=
impl_from_IShellItem2
(
iface
);
FIXME
(
"Stub: %p (%p, %p)
\n
"
,
This
,
key
,
ppsz
);
FIXME
(
"Stub: %p (%p, %p)
\n
"
,
This
,
key
,
ppsz
);
return
E_NOTIMPL
;
return
E_NOTIMPL
;
}
}
static
HRESULT
WINAPI
ShellItem2_GetUInt32
(
IShellItem2
*
iface
,
REFPROPERTYKEY
key
,
ULONG
*
pui
)
static
HRESULT
WINAPI
ShellItem2_GetUInt32
(
IShellItem2
*
iface
,
REFPROPERTYKEY
key
,
ULONG
*
pui
)
{
{
ShellI
tem
*
This
=
impl_from_IShellItem2
(
iface
);
struct
shell_i
tem
*
This
=
impl_from_IShellItem2
(
iface
);
FIXME
(
"Stub: %p (%p, %p)
\n
"
,
This
,
key
,
pui
);
FIXME
(
"Stub: %p (%p, %p)
\n
"
,
This
,
key
,
pui
);
return
E_NOTIMPL
;
return
E_NOTIMPL
;
}
}
static
HRESULT
WINAPI
ShellItem2_GetUInt64
(
IShellItem2
*
iface
,
REFPROPERTYKEY
key
,
ULONGLONG
*
pull
)
static
HRESULT
WINAPI
ShellItem2_GetUInt64
(
IShellItem2
*
iface
,
REFPROPERTYKEY
key
,
ULONGLONG
*
pull
)
{
{
ShellI
tem
*
This
=
impl_from_IShellItem2
(
iface
);
struct
shell_i
tem
*
This
=
impl_from_IShellItem2
(
iface
);
FIXME
(
"Stub: %p (%p, %p)
\n
"
,
This
,
key
,
pull
);
FIXME
(
"Stub: %p (%p, %p)
\n
"
,
This
,
key
,
pull
);
return
E_NOTIMPL
;
return
E_NOTIMPL
;
}
}
static
HRESULT
WINAPI
ShellItem2_GetBool
(
IShellItem2
*
iface
,
REFPROPERTYKEY
key
,
BOOL
*
pf
)
static
HRESULT
WINAPI
ShellItem2_GetBool
(
IShellItem2
*
iface
,
REFPROPERTYKEY
key
,
BOOL
*
pf
)
{
{
ShellI
tem
*
This
=
impl_from_IShellItem2
(
iface
);
struct
shell_i
tem
*
This
=
impl_from_IShellItem2
(
iface
);
FIXME
(
"Stub: %p (%p, %p)
\n
"
,
This
,
key
,
pf
);
FIXME
(
"Stub: %p (%p, %p)
\n
"
,
This
,
key
,
pf
);
return
E_NOTIMPL
;
return
E_NOTIMPL
;
}
}
...
@@ -480,19 +480,19 @@ static const IShellItem2Vtbl ShellItem2_Vtbl = {
...
@@ -480,19 +480,19 @@ static const IShellItem2Vtbl ShellItem2_Vtbl = {
static
HRESULT
WINAPI
ShellItem_IPersistIDList_QueryInterface
(
IPersistIDList
*
iface
,
static
HRESULT
WINAPI
ShellItem_IPersistIDList_QueryInterface
(
IPersistIDList
*
iface
,
REFIID
riid
,
void
**
ppv
)
REFIID
riid
,
void
**
ppv
)
{
{
ShellI
tem
*
This
=
impl_from_IPersistIDList
(
iface
);
struct
shell_i
tem
*
This
=
impl_from_IPersistIDList
(
iface
);
return
IShellItem2_QueryInterface
(
&
This
->
IShellItem2_iface
,
riid
,
ppv
);
return
IShellItem2_QueryInterface
(
&
This
->
IShellItem2_iface
,
riid
,
ppv
);
}
}
static
ULONG
WINAPI
ShellItem_IPersistIDList_AddRef
(
IPersistIDList
*
iface
)
static
ULONG
WINAPI
ShellItem_IPersistIDList_AddRef
(
IPersistIDList
*
iface
)
{
{
ShellI
tem
*
This
=
impl_from_IPersistIDList
(
iface
);
struct
shell_i
tem
*
This
=
impl_from_IPersistIDList
(
iface
);
return
IShellItem2_AddRef
(
&
This
->
IShellItem2_iface
);
return
IShellItem2_AddRef
(
&
This
->
IShellItem2_iface
);
}
}
static
ULONG
WINAPI
ShellItem_IPersistIDList_Release
(
IPersistIDList
*
iface
)
static
ULONG
WINAPI
ShellItem_IPersistIDList_Release
(
IPersistIDList
*
iface
)
{
{
ShellI
tem
*
This
=
impl_from_IPersistIDList
(
iface
);
struct
shell_i
tem
*
This
=
impl_from_IPersistIDList
(
iface
);
return
IShellItem2_Release
(
&
This
->
IShellItem2_iface
);
return
IShellItem2_Release
(
&
This
->
IShellItem2_iface
);
}
}
...
@@ -506,7 +506,7 @@ static HRESULT WINAPI ShellItem_IPersistIDList_GetClassID(IPersistIDList* iface,
...
@@ -506,7 +506,7 @@ static HRESULT WINAPI ShellItem_IPersistIDList_GetClassID(IPersistIDList* iface,
static
HRESULT
WINAPI
ShellItem_IPersistIDList_SetIDList
(
IPersistIDList
*
iface
,
static
HRESULT
WINAPI
ShellItem_IPersistIDList_SetIDList
(
IPersistIDList
*
iface
,
LPCITEMIDLIST
pidl
)
LPCITEMIDLIST
pidl
)
{
{
ShellI
tem
*
This
=
impl_from_IPersistIDList
(
iface
);
struct
shell_i
tem
*
This
=
impl_from_IPersistIDList
(
iface
);
LPITEMIDLIST
new_pidl
;
LPITEMIDLIST
new_pidl
;
TRACE
(
"(%p,%p)
\n
"
,
This
,
pidl
);
TRACE
(
"(%p,%p)
\n
"
,
This
,
pidl
);
...
@@ -526,7 +526,7 @@ static HRESULT WINAPI ShellItem_IPersistIDList_SetIDList(IPersistIDList* iface,
...
@@ -526,7 +526,7 @@ static HRESULT WINAPI ShellItem_IPersistIDList_SetIDList(IPersistIDList* iface,
static
HRESULT
WINAPI
ShellItem_IPersistIDList_GetIDList
(
IPersistIDList
*
iface
,
static
HRESULT
WINAPI
ShellItem_IPersistIDList_GetIDList
(
IPersistIDList
*
iface
,
LPITEMIDLIST
*
ppidl
)
LPITEMIDLIST
*
ppidl
)
{
{
ShellI
tem
*
This
=
impl_from_IPersistIDList
(
iface
);
struct
shell_i
tem
*
This
=
impl_from_IPersistIDList
(
iface
);
TRACE
(
"(%p,%p)
\n
"
,
This
,
ppidl
);
TRACE
(
"(%p,%p)
\n
"
,
This
,
ppidl
);
...
@@ -549,26 +549,26 @@ static const IPersistIDListVtbl ShellItem_IPersistIDList_Vtbl = {
...
@@ -549,26 +549,26 @@ static const IPersistIDListVtbl ShellItem_IPersistIDList_Vtbl = {
static
HRESULT
WINAPI
ShellItem_IShellItemImageFactory_QueryInterface
(
IShellItemImageFactory
*
iface
,
static
HRESULT
WINAPI
ShellItem_IShellItemImageFactory_QueryInterface
(
IShellItemImageFactory
*
iface
,
REFIID
riid
,
void
**
ppv
)
REFIID
riid
,
void
**
ppv
)
{
{
ShellI
tem
*
This
=
impl_from_IShellItemImageFactory
(
iface
);
struct
shell_i
tem
*
This
=
impl_from_IShellItemImageFactory
(
iface
);
return
IShellItem2_QueryInterface
(
&
This
->
IShellItem2_iface
,
riid
,
ppv
);
return
IShellItem2_QueryInterface
(
&
This
->
IShellItem2_iface
,
riid
,
ppv
);
}
}
static
ULONG
WINAPI
ShellItem_IShellItemImageFactory_AddRef
(
IShellItemImageFactory
*
iface
)
static
ULONG
WINAPI
ShellItem_IShellItemImageFactory_AddRef
(
IShellItemImageFactory
*
iface
)
{
{
ShellI
tem
*
This
=
impl_from_IShellItemImageFactory
(
iface
);
struct
shell_i
tem
*
This
=
impl_from_IShellItemImageFactory
(
iface
);
return
IShellItem2_AddRef
(
&
This
->
IShellItem2_iface
);
return
IShellItem2_AddRef
(
&
This
->
IShellItem2_iface
);
}
}
static
ULONG
WINAPI
ShellItem_IShellItemImageFactory_Release
(
IShellItemImageFactory
*
iface
)
static
ULONG
WINAPI
ShellItem_IShellItemImageFactory_Release
(
IShellItemImageFactory
*
iface
)
{
{
ShellI
tem
*
This
=
impl_from_IShellItemImageFactory
(
iface
);
struct
shell_i
tem
*
This
=
impl_from_IShellItemImageFactory
(
iface
);
return
IShellItem2_Release
(
&
This
->
IShellItem2_iface
);
return
IShellItem2_Release
(
&
This
->
IShellItem2_iface
);
}
}
static
HRESULT
WINAPI
ShellItem_IShellItemImageFactory_GetImage
(
IShellItemImageFactory
*
iface
,
static
HRESULT
WINAPI
ShellItem_IShellItemImageFactory_GetImage
(
IShellItemImageFactory
*
iface
,
SIZE
size
,
SIIGBF
flags
,
HBITMAP
*
phbm
)
SIZE
size
,
SIIGBF
flags
,
HBITMAP
*
phbm
)
{
{
ShellI
tem
*
This
=
impl_from_IShellItemImageFactory
(
iface
);
struct
shell_i
tem
*
This
=
impl_from_IShellItemImageFactory
(
iface
);
static
const
BITMAPINFOHEADER
dummy_bmi_header
=
{
static
const
BITMAPINFOHEADER
dummy_bmi_header
=
{
.
biSize
=
sizeof
(
dummy_bmi_header
),
.
biSize
=
sizeof
(
dummy_bmi_header
),
.
biWidth
=
1
,
.
biWidth
=
1
,
...
@@ -601,7 +601,7 @@ static const IShellItemImageFactoryVtbl ShellItem_IShellItemImageFactory_Vtbl =
...
@@ -601,7 +601,7 @@ static const IShellItemImageFactoryVtbl ShellItem_IShellItemImageFactory_Vtbl =
HRESULT
WINAPI
IShellItem_Constructor
(
IUnknown
*
pUnkOuter
,
REFIID
riid
,
void
**
ppv
)
HRESULT
WINAPI
IShellItem_Constructor
(
IUnknown
*
pUnkOuter
,
REFIID
riid
,
void
**
ppv
)
{
{
ShellI
tem
*
This
;
struct
shell_i
tem
*
This
;
HRESULT
ret
;
HRESULT
ret
;
TRACE
(
"(%p,%s)
\n
"
,
pUnkOuter
,
debugstr_guid
(
riid
));
TRACE
(
"(%p,%s)
\n
"
,
pUnkOuter
,
debugstr_guid
(
riid
));
...
...
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