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
758b2887
Commit
758b2887
authored
Dec 17, 2004
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove some no longer needed AW functions.
parent
ddd2486e
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
0 additions
and
59 deletions
+0
-59
iconcache.c
dlls/shell32/iconcache.c
+0
-9
pidl.c
dlls/shell32/pidl.c
+0
-12
shell32_main.c
dlls/shell32/shell32_main.c
+0
-15
shlexec.c
dlls/shell32/shlexec.c
+0
-11
shlfileop.c
dlls/shell32/shlfileop.c
+0
-11
shellapi.h
include/shellapi.h
+0
-1
No files found.
dlls/shell32/iconcache.c
View file @
758b2887
...
...
@@ -402,15 +402,6 @@ INT WINAPI Shell_GetCachedImageIndexAW(LPCVOID szPath, INT nIndex, BOOL bSimulat
}
/*************************************************************************
* ExtractIconEx [SHELL32.@]
*/
UINT
WINAPI
ExtractIconExAW
(
LPCVOID
lpszFile
,
INT
nIconIndex
,
HICON
*
phiconLarge
,
HICON
*
phiconSmall
,
UINT
nIcons
)
{
if
(
SHELL_OsIsUnicode
())
return
ExtractIconExW
(
lpszFile
,
nIconIndex
,
phiconLarge
,
phiconSmall
,
nIcons
);
return
ExtractIconExA
(
lpszFile
,
nIconIndex
,
phiconLarge
,
phiconSmall
,
nIcons
);
}
/*************************************************************************
* ExtractIconExW [SHELL32.@]
* RETURNS
* 0 no icon found
...
...
dlls/shell32/pidl.c
View file @
758b2887
...
...
@@ -1365,18 +1365,6 @@ BOOL WINAPI SHGetPathFromIDListW(LPCITEMIDLIST pidl, LPWSTR pszPath)
}
/*************************************************************************
* SHGetPathFromIDList [SHELL32.@][NT 4.0: SHELL32.219]
*/
BOOL
WINAPI
SHGetPathFromIDListAW
(
LPCITEMIDLIST
pidl
,
LPVOID
pszPath
)
{
TRACE_
(
shell
)(
"(pidl=%p,%p)
\n
"
,
pidl
,
pszPath
);
if
(
SHELL_OsIsUnicode
())
return
SHGetPathFromIDListW
(
pidl
,
pszPath
);
return
SHGetPathFromIDListA
(
pidl
,
pszPath
);
}
/*************************************************************************
* SHBindToParent [shell version 5.0]
*/
HRESULT
WINAPI
SHBindToParent
(
LPCITEMIDLIST
pidl
,
REFIID
riid
,
LPVOID
*
ppv
,
LPCITEMIDLIST
*
ppidlLast
)
...
...
dlls/shell32/shell32_main.c
View file @
758b2887
...
...
@@ -543,21 +543,6 @@ DWORD WINAPI SHGetFileInfoA(LPCSTR path,DWORD dwFileAttributes,
}
/*************************************************************************
* SHGetFileInfo [SHELL32.@]
*/
DWORD
WINAPI
SHGetFileInfoAW
(
LPCVOID
path
,
DWORD
dwFileAttributes
,
LPVOID
psfi
,
UINT
sizeofpsfi
,
UINT
flags
)
{
if
(
SHELL_OsIsUnicode
())
return
SHGetFileInfoW
(
path
,
dwFileAttributes
,
psfi
,
sizeofpsfi
,
flags
);
return
SHGetFileInfoA
(
path
,
dwFileAttributes
,
psfi
,
sizeofpsfi
,
flags
);
}
/*************************************************************************
* DuplicateIcon [SHELL32.@]
*/
HICON
WINAPI
DuplicateIcon
(
HINSTANCE
hInstance
,
HICON
hIcon
)
...
...
dlls/shell32/shlexec.c
View file @
758b2887
...
...
@@ -1364,17 +1364,6 @@ HINSTANCE WINAPI ShellExecuteA(HWND hWnd, LPCSTR lpOperation,LPCSTR lpFile,
}
/*************************************************************************
* ShellExecuteEx [SHELL32.291]
*
*/
BOOL
WINAPI
ShellExecuteExAW
(
LPVOID
sei
)
{
if
(
SHELL_OsIsUnicode
())
return
ShellExecuteExW32
(
sei
,
SHELL_ExecuteW
);
return
ShellExecuteExA
(
sei
);
}
/*************************************************************************
* ShellExecuteExA [SHELL32.292]
*
*/
...
...
dlls/shell32/shlfileop.c
View file @
758b2887
...
...
@@ -1348,17 +1348,6 @@ shfileop_end:
return
retCode
;
}
/*************************************************************************
* SHFileOperation [SHELL32.@]
*
*/
DWORD
WINAPI
SHFileOperationAW
(
LPVOID
lpFileOp
)
{
if
(
SHELL_OsIsUnicode
())
return
SHFileOperationW
(
lpFileOp
);
return
SHFileOperationA
(
lpFileOp
);
}
#define SHDSA_GetItemCount(hdsa) (*(int*)(hdsa))
/*************************************************************************
...
...
include/shellapi.h
View file @
758b2887
...
...
@@ -416,7 +416,6 @@ HICON WINAPI ExtractAssociatedIconExW(HINSTANCE,LPWSTR,LPWORD,LPWORD);
UINT
WINAPI
ExtractIconExA
(
LPCSTR
,
INT
,
HICON
*
,
HICON
*
,
UINT
);
UINT
WINAPI
ExtractIconExW
(
LPCWSTR
,
INT
,
HICON
*
,
HICON
*
,
UINT
);
#define ExtractIconEx WINELIB_NAME_AW(ExtractIconEx)
UINT
WINAPI
ExtractIconExAW
(
LPCVOID
,
INT
,
HICON
*
,
HICON
*
,
UINT
);
HINSTANCE
WINAPI
FindExecutableA
(
LPCSTR
,
LPCSTR
,
LPSTR
);
HINSTANCE
WINAPI
FindExecutableW
(
LPCWSTR
,
LPCWSTR
,
LPWSTR
);
#define FindExecutable WINELIB_NAME_AW(FindExecutable)
...
...
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