Skip to content
Snippets Groups Projects
Commit a0e4dbcf authored by Vijay Kiran Kamuju's avatar Vijay Kiran Kamuju Committed by Alexandre Julliard
Browse files

mscms: Add stub for WcsGetDefaultRenderingIntent.

parent 87e14f61
No related branches found
No related tags found
No related merge requests found
......@@ -93,7 +93,7 @@
@ stub WcsGetCalibrationManagementState
@ stub WcsGetDefaultColorProfile
@ stdcall WcsGetDefaultColorProfileSize(long wstr long long long ptr)
@ stub WcsGetDefaultRenderingIntent
@ stdcall WcsGetDefaultRenderingIntent(long ptr)
@ stdcall WcsGetUsePerUserProfiles(wstr long ptr)
@ stub WcsGpCanInstallOrUninstallProfiles
@ stdcall WcsOpenColorProfileA(ptr ptr ptr long long long long)
......
......@@ -1564,6 +1564,16 @@ BOOL WINAPI WcsGetDefaultColorProfileSize( WCS_PROFILE_MANAGEMENT_SCOPE scope, P
return FALSE;
}
/******************************************************************************
* WcsGetDefaultRednderingIntent [MSCMS.@]
*/
BOOL WINAPI WcsGetDefaultRenderingIntent( WCS_PROFILE_MANAGEMENT_SCOPE scope, PDWORD intent)
{
FIXME( "%d %p\n", scope, intent );
SetLastError( ERROR_CALL_NOT_IMPLEMENTED );
return FALSE;
}
/******************************************************************************
* WcsOpenColorProfileA [MSCMS.@]
*/
......
......@@ -500,6 +500,7 @@ BOOL WINAPI UnregisterCMMW(PCWSTR,DWORD);
#define UnregisterCMM WINELIB_NAME_AW(UnregisterCMM)
BOOL WINAPI WcsEnumColorProfilesSize(WCS_PROFILE_MANAGEMENT_SCOPE,ENUMTYPEW*,DWORD*);
BOOL WINAPI WcsGetDefaultColorProfileSize(WCS_PROFILE_MANAGEMENT_SCOPE,const WCHAR*,COLORPROFILETYPE,COLORPROFILESUBTYPE,DWORD,DWORD*);
BOOL WINAPI WcsGetDefaultRenderingIntent(WCS_PROFILE_MANAGEMENT_SCOPE,DWORD*);
BOOL WINAPI WcsGetUsePerUserProfiles(const WCHAR*,DWORD,BOOL*);
HPROFILE WINAPI WcsOpenColorProfileA(PROFILE*,PROFILE*,PROFILE*,DWORD,DWORD,DWORD,DWORD);
HPROFILE WINAPI WcsOpenColorProfileW(PROFILE*,PROFILE*,PROFILE*,DWORD,DWORD,DWORD,DWORD);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment