2004-09-22 06:08:38 +02:00
|
|
|
/*
|
|
|
|
* MSCMS - Color Management System for Wine
|
|
|
|
*
|
2005-02-21 19:38:15 +01:00
|
|
|
* Copyright 2004, 2005 Hans Leidekker
|
2004-09-22 06:08:38 +02:00
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with this library; if not, write to the Free Software
|
2006-05-18 14:49:52 +02:00
|
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
2004-09-22 06:08:38 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include "config.h"
|
|
|
|
|
2004-10-07 21:12:41 +02:00
|
|
|
#include "wine/port.h"
|
|
|
|
#include "wine/debug.h"
|
|
|
|
#include "wine/library.h"
|
|
|
|
|
2004-09-22 06:08:38 +02:00
|
|
|
#include <stdarg.h>
|
|
|
|
|
|
|
|
#include "windef.h"
|
|
|
|
#include "winbase.h"
|
|
|
|
#include "wingdi.h"
|
2004-10-22 21:56:51 +02:00
|
|
|
#include "winuser.h"
|
2004-09-22 06:08:38 +02:00
|
|
|
#include "icm.h"
|
|
|
|
|
2008-03-24 21:33:06 +01:00
|
|
|
#include "mscms_priv.h"
|
|
|
|
|
2004-10-07 21:12:41 +02:00
|
|
|
WINE_DEFAULT_DEBUG_CHANNEL(mscms);
|
2004-09-22 06:08:38 +02:00
|
|
|
|
2013-07-26 13:02:40 +02:00
|
|
|
#ifdef HAVE_LCMS2
|
|
|
|
static void lcms_error_handler(cmsContext ctx, cmsUInt32Number error, const char *text)
|
2009-03-05 12:11:30 +01:00
|
|
|
{
|
2013-07-26 13:02:40 +02:00
|
|
|
TRACE("%u %s\n", error, debugstr_a(text));
|
2009-03-05 12:11:30 +01:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2004-10-07 21:12:41 +02:00
|
|
|
BOOL WINAPI DllMain( HINSTANCE hinst, DWORD reason, LPVOID reserved )
|
2004-09-22 06:08:38 +02:00
|
|
|
{
|
2006-09-30 12:07:13 +02:00
|
|
|
TRACE( "(%p, %d, %p)\n", hinst, reason, reserved );
|
2004-09-22 06:08:38 +02:00
|
|
|
|
2004-10-07 21:12:41 +02:00
|
|
|
switch (reason)
|
|
|
|
{
|
|
|
|
case DLL_PROCESS_ATTACH:
|
2005-03-09 19:42:52 +01:00
|
|
|
DisableThreadLibraryCalls( hinst );
|
2013-07-26 13:02:40 +02:00
|
|
|
#ifdef HAVE_LCMS2
|
|
|
|
cmsSetLogErrorHandler( lcms_error_handler );
|
2014-01-03 15:01:57 +01:00
|
|
|
#else
|
2014-01-23 06:28:27 +01:00
|
|
|
ERR( "Wine was built without support for liblcms2, expect problems\n" );
|
2009-03-05 12:11:30 +01:00
|
|
|
#endif
|
2005-07-15 12:09:43 +02:00
|
|
|
break;
|
2004-10-07 21:12:41 +02:00
|
|
|
case DLL_PROCESS_DETACH:
|
2013-05-15 10:23:06 +02:00
|
|
|
if (reserved) break;
|
2013-07-26 13:02:40 +02:00
|
|
|
#ifdef HAVE_LCMS2
|
2008-03-24 21:33:06 +01:00
|
|
|
free_handle_tables();
|
2008-03-25 13:47:14 +01:00
|
|
|
#endif
|
2004-10-07 21:12:41 +02:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
return TRUE;
|
2004-09-22 06:08:38 +02:00
|
|
|
}
|