Commit 8800772f authored by Hans Leidekker's avatar Hans Leidekker Committed by Alexandre Julliard

mscms: Trace the CMM id as a string.

parent 5dbf6359
......@@ -137,21 +137,21 @@ BOOL WINAPI GetPS2ColorSpaceArray( HPROFILE profile, DWORD intent, DWORD type, P
BOOL WINAPI RegisterCMMA( PCSTR machine, DWORD id, PCSTR dll )
{
FIXME( "( %p, 0x%08x, %p ) stub\n", machine, id, dll );
FIXME( "( %p, %s, %p ) stub\n", machine, MSCMS_dbgstr_tag(id), dll );
return TRUE;
}
BOOL WINAPI RegisterCMMW( PCWSTR machine, DWORD id, PCWSTR dll )
{
FIXME( "( %p, 0x%08x, %p ) stub\n", machine, id, dll );
FIXME( "( %p, %s, %p ) stub\n", machine, MSCMS_dbgstr_tag(id), dll );
return TRUE;
}
BOOL WINAPI SelectCMM( DWORD id )
{
FIXME( "(%x) stub\n", id );
FIXME( "(%s) stub\n", MSCMS_dbgstr_tag(id) );
return TRUE;
}
......@@ -190,14 +190,14 @@ BOOL WINAPI SpoolerCopyFileEvent( LPWSTR printer, LPWSTR key, DWORD event )
BOOL WINAPI UnregisterCMMA( PCSTR machine, DWORD id )
{
FIXME( "( %p, 0x%08x ) stub\n", machine, id );
FIXME( "( %p, %s ) stub\n", machine, MSCMS_dbgstr_tag(id) );
return TRUE;
}
BOOL WINAPI UnregisterCMMW( PCWSTR machine, DWORD id )
{
FIXME( "( %p, 0x%08x ) stub\n", machine, id );
FIXME( "( %p, %s ) stub\n", machine, MSCMS_dbgstr_tag(id) );
return TRUE;
}
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