Commit 920b1371 authored by Louis Lenders's avatar Louis Lenders Committed by Alexandre Julliard

mscms: Add stub for WcsEnumColorProfilesSize.

parent 83fd2334
...@@ -89,7 +89,7 @@ ...@@ -89,7 +89,7 @@
@ stub WcsCreateIccProfile @ stub WcsCreateIccProfile
@ stub WcsDisassociateColorProfileFromDevice @ stub WcsDisassociateColorProfileFromDevice
@ stub WcsEnumColorProfiles @ stub WcsEnumColorProfiles
@ stub WcsEnumColorProfilesSize @ stdcall WcsEnumColorProfilesSize(long ptr ptr)
@ stub WcsGetCalibrationManagementState @ stub WcsGetCalibrationManagementState
@ stub WcsGetDefaultColorProfile @ stub WcsGetDefaultColorProfile
@ stub WcsGetDefaultColorProfileSize @ stub WcsGetDefaultColorProfileSize
......
...@@ -1535,3 +1535,13 @@ BOOL WINAPI WcsGetUsePerUserProfiles( const WCHAR* name, DWORD class, BOOL* use_ ...@@ -1535,3 +1535,13 @@ BOOL WINAPI WcsGetUsePerUserProfiles( const WCHAR* name, DWORD class, BOOL* use_
SetLastError( ERROR_CALL_NOT_IMPLEMENTED ); SetLastError( ERROR_CALL_NOT_IMPLEMENTED );
return FALSE; return FALSE;
} }
/******************************************************************************
* WcsEnumColorProfilesSize [MSCMS.@]
*/
BOOL WINAPI WcsEnumColorProfilesSize( WCS_PROFILE_MANAGEMENT_SCOPE scope, ENUMTYPEW *record, DWORD *size )
{
FIXME( "%d %p %p\n", scope, record, size );
SetLastError( ERROR_CALL_NOT_IMPLEMENTED );
return FALSE;
}
...@@ -176,6 +176,12 @@ typedef enum ...@@ -176,6 +176,12 @@ typedef enum
BM_16b_GRAY, BM_16b_GRAY,
} BMFORMAT, *PBMFORMAT, *LPBMFORMAT; } BMFORMAT, *PBMFORMAT, *LPBMFORMAT;
typedef enum
{
WCS_PROFILE_MANAGEMENT_SCOPE_SYSTEM_WIDE,
WCS_PROFILE_MANAGEMENT_SCOPE_CURRENT_USER
} WCS_PROFILE_MANAGEMENT_SCOPE;
typedef BOOL (CALLBACK *PBMCALLBACKFN)(ULONG,ULONG,LPARAM); typedef BOOL (CALLBACK *PBMCALLBACKFN)(ULONG,ULONG,LPARAM);
typedef PBMCALLBACKFN LPPBMCALLBACKFN; typedef PBMCALLBACKFN LPPBMCALLBACKFN;
...@@ -403,6 +409,7 @@ BOOL WINAPI UninstallColorProfileW(PCWSTR,PCWSTR,BOOL); ...@@ -403,6 +409,7 @@ BOOL WINAPI UninstallColorProfileW(PCWSTR,PCWSTR,BOOL);
BOOL WINAPI UnregisterCMMA(PCSTR,DWORD); BOOL WINAPI UnregisterCMMA(PCSTR,DWORD);
BOOL WINAPI UnregisterCMMW(PCWSTR,DWORD); BOOL WINAPI UnregisterCMMW(PCWSTR,DWORD);
#define UnregisterCMM WINELIB_NAME_AW(UnregisterCMM) #define UnregisterCMM WINELIB_NAME_AW(UnregisterCMM)
BOOL WINAPI WcsEnumColorProfilesSize(WCS_PROFILE_MANAGEMENT_SCOPE,ENUMTYPEW*,DWORD*);
BOOL WINAPI WcsGetUsePerUserProfiles(const WCHAR*,DWORD,BOOL*); BOOL WINAPI WcsGetUsePerUserProfiles(const WCHAR*,DWORD,BOOL*);
#define PROFILE_FILENAME 1 #define PROFILE_FILENAME 1
......
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