mscms: Trace the CMM id as a string.
This commit is contained in:
parent
5dbf6359d2
commit
8800772f2d
|
@ -137,21 +137,21 @@ BOOL WINAPI GetPS2ColorSpaceArray( HPROFILE profile, DWORD intent, DWORD type, P
|
||||||
|
|
||||||
BOOL WINAPI RegisterCMMA( PCSTR machine, DWORD id, PCSTR dll )
|
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;
|
return TRUE;
|
||||||
}
|
}
|
||||||
|
|
||||||
BOOL WINAPI RegisterCMMW( PCWSTR machine, DWORD id, PCWSTR dll )
|
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;
|
return TRUE;
|
||||||
}
|
}
|
||||||
|
|
||||||
BOOL WINAPI SelectCMM( DWORD id )
|
BOOL WINAPI SelectCMM( DWORD id )
|
||||||
{
|
{
|
||||||
FIXME( "(%x) stub\n", id );
|
FIXME( "(%s) stub\n", MSCMS_dbgstr_tag(id) );
|
||||||
|
|
||||||
return TRUE;
|
return TRUE;
|
||||||
}
|
}
|
||||||
|
@ -190,14 +190,14 @@ BOOL WINAPI SpoolerCopyFileEvent( LPWSTR printer, LPWSTR key, DWORD event )
|
||||||
|
|
||||||
BOOL WINAPI UnregisterCMMA( PCSTR machine, DWORD id )
|
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;
|
return TRUE;
|
||||||
}
|
}
|
||||||
|
|
||||||
BOOL WINAPI UnregisterCMMW( PCWSTR machine, DWORD id )
|
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;
|
return TRUE;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue