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
5a647e87
Commit
5a647e87
authored
Jan 26, 2010
by
Christian Costa
Committed by
Alexandre Julliard
Jan 26, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
shell32: Improve some FIXMEs.
parent
223603cc
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
6 deletions
+6
-6
shelllink.c
dlls/shell32/shelllink.c
+6
-6
No files found.
dlls/shell32/shelllink.c
View file @
5a647e87
...
...
@@ -499,7 +499,7 @@ static HRESULT WINAPI IPersistFile_fnSaveCompleted(IPersistFile* iface, LPCOLEST
static
HRESULT
WINAPI
IPersistFile_fnGetCurFile
(
IPersistFile
*
iface
,
LPOLESTR
*
ppszFileName
)
{
IShellLinkImpl
*
This
=
impl_from_IPersistFile
(
iface
);
FIXME
(
"(%p)
\n
"
,
This
);
FIXME
(
"(%p)
->(%p): stub
\n
"
,
This
,
ppszFileName
);
return
NOERROR
;
}
...
...
@@ -2313,7 +2313,7 @@ ShellLink_DataList_Release( IShellLinkDataList* iface )
static
HRESULT
WINAPI
ShellLink_AddDataBlock
(
IShellLinkDataList
*
iface
,
void
*
pDataBlock
)
{
FIXME
(
"
\n
"
);
FIXME
(
"
(%p)->(%p): stub
\n
"
,
iface
,
pDataBlock
);
return
E_NOTIMPL
;
}
...
...
@@ -2351,7 +2351,7 @@ ShellLink_CopyDataBlock( IShellLinkDataList* iface, DWORD dwSig, void** ppDataBl
static
HRESULT
WINAPI
ShellLink_RemoveDataBlock
(
IShellLinkDataList
*
iface
,
DWORD
dwSig
)
{
FIXME
(
"
\n
"
);
FIXME
(
"
(%p)->(%u): stub
\n
"
,
iface
,
dwSig
);
return
E_NOTIMPL
;
}
...
...
@@ -2361,7 +2361,7 @@ ShellLink_GetFlags( IShellLinkDataList* iface, DWORD* pdwFlags )
IShellLinkImpl
*
This
=
impl_from_IShellLinkDataList
(
iface
);
DWORD
flags
=
0
;
FIXME
(
"
%p %p
\n
"
,
This
,
pdwFlags
);
FIXME
(
"
(%p)->(%p): partially implemented
\n
"
,
This
,
pdwFlags
);
/* FIXME: add more */
if
(
This
->
sArgs
)
...
...
@@ -2383,7 +2383,7 @@ ShellLink_GetFlags( IShellLinkDataList* iface, DWORD* pdwFlags )
static
HRESULT
WINAPI
ShellLink_SetFlags
(
IShellLinkDataList
*
iface
,
DWORD
dwFlags
)
{
FIXME
(
"
\n
"
);
FIXME
(
"
(%p)->(%u): stub
\n
"
,
iface
,
dwFlags
);
return
E_NOTIMPL
;
}
...
...
@@ -2639,7 +2639,7 @@ ShellLink_GetCommandString( IContextMenu* iface, UINT_PTR idCmd, UINT uType,
{
IShellLinkImpl
*
This
=
impl_from_IContextMenu
(
iface
);
FIXME
(
"
%p %lu %u %p %p %u
\n
"
,
This
,
FIXME
(
"
(%p)->(%lu %u %p %p %u): stub
\n
"
,
This
,
idCmd
,
uType
,
pwReserved
,
pszName
,
cchMax
);
return
E_NOTIMPL
;
...
...
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