mirror of
git://source.winehq.org/git/wine.git
synced 2024-11-05 18:01:34 +00:00
shell32: Cast-qual warnings fix.
This commit is contained in:
parent
c156c1e496
commit
30806fc00c
4 changed files with 7 additions and 5 deletions
|
@ -348,7 +348,8 @@ int WINAPIV ShellMessageBoxW(
|
|||
...)
|
||||
{
|
||||
WCHAR szText[100],szTitle[100];
|
||||
LPCWSTR pszText = szText, pszTitle = szTitle, pszTemp;
|
||||
LPCWSTR pszText = szText, pszTitle = szTitle;
|
||||
LPWSTR pszTemp;
|
||||
va_list args;
|
||||
int ret;
|
||||
|
||||
|
@ -405,7 +406,8 @@ int WINAPIV ShellMessageBoxA(
|
|||
...)
|
||||
{
|
||||
char szText[100],szTitle[100];
|
||||
LPCSTR pszText = szText, pszTitle = szTitle, pszTemp;
|
||||
LPCSTR pszText = szText, pszTitle = szTitle;
|
||||
LPSTR pszTemp;
|
||||
va_list args;
|
||||
int ret;
|
||||
|
||||
|
|
|
@ -600,7 +600,7 @@ int WINAPI PathCleanupSpec( LPCWSTR lpszPathW, LPWSTR lpszFileW )
|
|||
else
|
||||
{
|
||||
LPSTR lpszFileA = (LPSTR)lpszFileW;
|
||||
LPCSTR lpszPathA = (LPSTR)lpszPathW;
|
||||
LPCSTR lpszPathA = (LPCSTR)lpszPathW;
|
||||
LPSTR p = lpszFileA;
|
||||
|
||||
TRACE("Cleanup %s\n",debugstr_a(lpszFileA));
|
||||
|
|
|
@ -311,7 +311,7 @@ static ULONG WINAPI IShellFolder_fnRelease (IShellFolder2 * iface)
|
|||
*/
|
||||
LPITEMIDLIST SHELL32_CreatePidlFromBindCtx(IBindCtx *pbc, LPCWSTR path)
|
||||
{
|
||||
static const WCHAR szfsbc[] = {
|
||||
static WCHAR szfsbc[] = {
|
||||
'F','i','l','e',' ','S','y','s','t','e','m',' ',
|
||||
'B','i','n','d',' ','D','a','t','a',0 };
|
||||
IFileSystemBindData *fsbd = NULL;
|
||||
|
|
|
@ -1464,7 +1464,7 @@ BOOL SHELL_execute( LPSHELLEXECUTEINFOW sei, SHELL_ExecuteW32 execfunc )
|
|||
retval = execfunc(wszQuotedCmd, env, FALSE, &sei_tmp, sei);
|
||||
HeapFree( GetProcessHeap(), 0, env );
|
||||
}
|
||||
else if (PathIsURLW((LPWSTR)lpFile)) /* File not found, check for URL */
|
||||
else if (PathIsURLW(lpFile)) /* File not found, check for URL */
|
||||
{
|
||||
static const WCHAR wShell[] = {'\\','s','h','e','l','l','\\',0};
|
||||
static const WCHAR wCommand[] = {'\\','c','o','m','m','a','n','d',0};
|
||||
|
|
Loading…
Reference in a new issue