Bug 504025 - [windows x64] casting pointer to long is illegal on win64; don't cast HINSTANCE to int, use LONG_PTR instead; r=benjamin sr=cbiesinger

--HG--
extra : rebase_source : b60364af67246d341865a1d52c6fc93d4b62cf4b
This commit is contained in:
Mook 2009-08-09 00:50:39 +02:00
parent 3aac38d487
commit 3261283c4d

View File

@ -146,7 +146,7 @@ nsMIMEInfoWin::LaunchWithFile(nsIFile* aFile)
if (ShellExecuteExW(&seinfo))
return NS_OK;
switch ((int)seinfo.hInstApp) {
switch ((LONG_PTR)seinfo.hInstApp) {
case 0:
case SE_ERR_OOM:
return NS_ERROR_OUT_OF_MEMORY;
@ -326,7 +326,7 @@ nsMIMEInfoWin::LoadUriInternal(nsIURI * aURL)
}
if (NS_SUCCEEDED(rv)) {
BOOL result = ShellExecuteExW(&sinfo);
if (!result || ((int)sinfo.hInstApp) < 32)
if (!result || ((LONG_PTR)sinfo.hInstApp) < 32)
rv = NS_ERROR_FAILURE;
}
#ifndef WINCE