From 22f703cab05b7cd368f4de9e03991b7664dc5022 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rg=20Frings-F=C3=BCrst?= Date: Mon, 1 Sep 2014 13:56:46 +0200 Subject: Initial import of argyll version 1.5.1-8 --- xicc/xdgb.h | 71 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 71 insertions(+) create mode 100644 xicc/xdgb.h (limited to 'xicc/xdgb.h') diff --git a/xicc/xdgb.h b/xicc/xdgb.h new file mode 100644 index 0000000..bfb1752 --- /dev/null +++ b/xicc/xdgb.h @@ -0,0 +1,71 @@ + +#ifndef XDGB_H +#define XDGB_H + +/* + * International Color Consortium color transform expanded support + * eXpanded Device Gamut Boundary support. + * + * Author: Graeme W. Gill + * Date: 2008/11/17 + * Version: 1.00 + * + * Copyright 2008 Graeme W. Gill + * All rights reserved. + * This material is licenced under the GNU AFFERO GENERAL PUBLIC LICENSE Version 3 :- + * see the License.txt file for licencing details. + */ + +/* Flag values */ +#define XDGB_VERB 0x0001 /* Verbose output during fitting */ + + +/* Object holding device gamut representation */ +struct _xdgb { + int verb; /* Verbose */ + int flags; /* Behaviour flags */ + int di, fdi; /* Dimensionaluty of input and output */ + + /* Methods */ + void (*del)(struct _xdgb *p); + +}; typedef struct _xdgb xdgb; + +xdgb *new_xdgb(); + +#endif /* XDGB_H */ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + -- cgit v1.2.3