Commit d6515df8 authored by François Gouget's avatar François Gouget Committed by Alexandre Julliard

Convert HDESK to STRICT.

parent 0478059b
......@@ -92,7 +92,7 @@ DECLARE_OLD_HANDLE(HWAVE);
DECLARE_OLD_HANDLE(HWAVEIN);
DECLARE_OLD_HANDLE(HWAVEOUT);
DECLARE_OLD_HANDLE(HWINSTA);
DECLARE_OLD_HANDLE(HDESK);
DECLARE_HANDLE(HDESK);
DECLARE_OLD_HANDLE(HWND);
DECLARE_OLD_HANDLE(HKL);
......
......@@ -571,7 +571,7 @@ HDESK WINAPI CreateDesktopA(
lpszDesktop,lpszDevice,pDevmode,
dwFlags,dwDesiredAccess,lpsa
);
return 0xcafedead;
return (HDESK)0xcafedead;
}
/***********************************************************************
......@@ -585,7 +585,7 @@ HDESK WINAPI CreateDesktopW(
debugstr_w(lpszDesktop),debugstr_w(lpszDevice),pDevmode,
dwFlags,dwDesiredAccess,lpsa
);
return 0xcafedead;
return (HDESK)0xcafedead;
}
/***********************************************************************
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment