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
eec6585a
Commit
eec6585a
authored
Jun 21, 2002
by
Steven Edwards
Committed by
Alexandre Julliard
Jun 21, 2002
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Moved a few win32 functions to a better location for building a Win32
only dll.
parent
77afd6c4
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
35 additions
and
35 deletions
+35
-35
iconcache.c
dlls/shell32/iconcache.c
+35
-0
shell.c
dlls/shell32/shell.c
+0
-35
No files found.
dlls/shell32/iconcache.c
View file @
eec6585a
...
...
@@ -449,3 +449,38 @@ HICON WINAPI ExtractIconExW ( LPCWSTR lpszFile, INT nIconIndex, HICON * phiconLa
HeapFree
(
GetProcessHeap
(),
0
,
sFile
);
return
ret
;
}
/*************************************************************************
* ExtractAssociatedIconA (SHELL32.@)
*
* Return icon for given file (either from file itself or from associated
* executable) and patch parameters if needed.
*/
HICON
WINAPI
ExtractAssociatedIconA
(
HINSTANCE
hInst
,
LPSTR
lpIconPath
,
LPWORD
lpiIcon
)
{
TRACE
(
"
\n
"
);
return
ExtractAssociatedIcon16
(
hInst
,
lpIconPath
,
lpiIcon
);
}
/*************************************************************************
* ExtractAssociatedIconExA (SHELL32.@)
*
* Return icon for given file (either from file itself or from associated
* executable) and patch parameters if needed.
*/
HICON
WINAPI
ExtractAssociatedIconExA
(
DWORD
d1
,
DWORD
d2
,
DWORD
d3
,
DWORD
d4
)
{
FIXME
(
"(%lx %lx %lx %lx): stub
\n
"
,
d1
,
d2
,
d3
,
d4
);
return
0
;
}
/*************************************************************************
* ExtractAssociatedIconExW (SHELL32.@)
*
* Return icon for given file (either from file itself or from associated
* executable) and patch parameters if needed.
*/
HICON
WINAPI
ExtractAssociatedIconExW
(
DWORD
d1
,
DWORD
d2
,
DWORD
d3
,
DWORD
d4
)
{
FIXME
(
"(%lx %lx %lx %lx): stub
\n
"
,
d1
,
d2
,
d3
,
d4
);
return
0
;
}
dlls/shell32/shell.c
View file @
eec6585a
...
...
@@ -363,41 +363,6 @@ HICON16 WINAPI ExtractAssociatedIcon16(HINSTANCE16 hInst, LPSTR lpIconPath, LPWO
}
/*************************************************************************
* ExtractAssociatedIconA (SHELL32.@)
*
* Return icon for given file (either from file itself or from associated
* executable) and patch parameters if needed.
*/
HICON
WINAPI
ExtractAssociatedIconA
(
HINSTANCE
hInst
,
LPSTR
lpIconPath
,
LPWORD
lpiIcon
)
{
TRACE
(
"
\n
"
);
return
ExtractAssociatedIcon16
(
hInst
,
lpIconPath
,
lpiIcon
);
}
/*************************************************************************
* ExtractAssociatedIconExA (SHELL32.@)
*
* Return icon for given file (either from file itself or from associated
* executable) and patch parameters if needed.
*/
HICON
WINAPI
ExtractAssociatedIconExA
(
DWORD
d1
,
DWORD
d2
,
DWORD
d3
,
DWORD
d4
)
{
FIXME
(
"(%lx %lx %lx %lx): stub
\n
"
,
d1
,
d2
,
d3
,
d4
);
return
0
;
}
/*************************************************************************
* ExtractAssociatedIconExW (SHELL32.@)
*
* Return icon for given file (either from file itself or from associated
* executable) and patch parameters if needed.
*/
HICON
WINAPI
ExtractAssociatedIconExW
(
DWORD
d1
,
DWORD
d2
,
DWORD
d3
,
DWORD
d4
)
{
FIXME
(
"(%lx %lx %lx %lx): stub
\n
"
,
d1
,
d2
,
d3
,
d4
);
return
0
;
}
/*************************************************************************
* FindEnvironmentString [SHELL.38]
*
* Returns a pointer into the DOS environment... Ugh.
...
...
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