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
0ea140da
Commit
0ea140da
authored
May 13, 2003
by
Ulrich Czekalla
Committed by
Alexandre Julliard
May 13, 2003
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Partial implementation/stub of undocumented function shell32.256.
parent
663dbc96
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
28 additions
and
0 deletions
+28
-0
shell32.spec
dlls/shell32/shell32.spec
+1
-0
shellord.c
dlls/shell32/shellord.c
+27
-0
No files found.
dlls/shell32/shell32.spec
View file @
0ea140da
...
...
@@ -202,6 +202,7 @@
249 stdcall PathParseIconLocation (ptr) PathParseIconLocationAW
250 stdcall PathRemoveExtension (ptr) PathRemoveExtensionAW
251 stdcall PathRemoveArgs (ptr) PathRemoveArgsAW
256 stdcall @(ptr ptr) SHELL32_256
271 stub SheChangeDirA
272 stub SheChangeDirExA
273 stub SheChangeDirExW
...
...
dlls/shell32/shellord.c
View file @
0ea140da
...
...
@@ -1422,3 +1422,30 @@ HRESULT WINAPI SHCreateStdEnumFmtEtc(
return
hRes
;
}
/*************************************************************************
* SHELL32_256
*/
HRESULT
WINAPI
SHELL32_256
(
LPDWORD
lpdw0
,
LPDWORD
lpdw1
)
{
HRESULT
ret
=
S_OK
;
FIXME
(
"stub %p 0x%08lx %p
\n
"
,
lpdw0
,
lpdw0
?
*
lpdw0
:
0
,
lpdw1
);
if
(
!
lpdw0
||
*
lpdw0
!=
0x10
)
ret
=
E_INVALIDARG
;
else
{
LPVOID
lpdata
=
0
;
/*LocalAlloc(GMEM_ZEROINIT, 0x4E4);*/
if
(
!
lpdata
)
ret
=
E_OUTOFMEMORY
;
else
{
/* Initialize and return unknown lpdata structure */
}
}
return
ret
;
}
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