XcmDDC.h   XcmDDC.h 
skipping to change at line 20 skipping to change at line 20
* @author Kai-Uwe Behrmann <ku.b@gmx.de> * @author Kai-Uwe Behrmann <ku.b@gmx.de>
* @par License: * @par License:
* MIT <http://www.opensource.org/licenses/mit-license.php> * MIT <http://www.opensource.org/licenses/mit-license.php>
* @since 2010/12/28 * @since 2010/12/28
*/ */
#ifndef XCM_DDC_H #ifndef XCM_DDC_H
#define XCM_DDC_H #define XCM_DDC_H
#include <stddef.h> /* size_t */ #include <stddef.h> /* size_t */
#if !defined(__APPLE__) #if !defined(__APPLE__) && !defined(__FreeBSD__)
#ifdef __cplusplus #ifdef __cplusplus
extern "C" { extern "C" {
#endif /* __cplusplus */ #endif /* __cplusplus */
/** \addtogroup XcmDDC /** \addtogroup XcmDDC
* *
* @{ * @{
*/ */
skipping to change at line 61 skipping to change at line 61
size_t * size ); size_t * size );
const char * XcmDDCErrorToString ( XCM_DDC_ERROR_e error ); const char * XcmDDCErrorToString ( XCM_DDC_ERROR_e error );
/** } XcmDDC */ /** } XcmDDC */
#ifdef __cplusplus #ifdef __cplusplus
} /* extern "C" */ } /* extern "C" */
#endif /* __cplusplus */ #endif /* __cplusplus */
#endif /* !__APPLE__ */ #endif /* !__APPLE__ && !__FreeBSD__ */
#endif /* XCM_DDC_H */ #endif /* XCM_DDC_H */
 End of changes. 2 change blocks. 
2 lines changed or deleted 2 lines changed or added


 XcmEdidParse.h   XcmEdidParse.h 
/** XcmEdidParse.h /** XcmEdidParse.h
* *
* Xcm Xorg Colour Management * Xcm Xorg Colour Management
* *
* @par Copyright: * @par Copyright:
* 2005-2010 (C) Kai-Uwe Behrmann * 2005-2011 (C) Kai-Uwe Behrmann
* *
* @brief EDID data block parsing * @brief EDID data block parsing
* @internal * @internal
* @author Kai-Uwe Behrmann <ku.b@gmx.de> * @author Kai-Uwe Behrmann <ku.b@gmx.de>
* @par License: * @par License:
* MIT <http://www.opensource.org/licenses/mit-license.php> * MIT <http://www.opensource.org/licenses/mit-license.php>
* @since 2005/01/31 * @since 2005/01/31
*/ */
#ifndef XCM_EDID_PARSE_H #ifndef XCM_EDID_PARSE_H
skipping to change at line 102 skipping to change at line 102
XCM_EDID_ERROR_e XcmEdidParse ( void * edid, XCM_EDID_ERROR_e XcmEdidParse ( void * edid,
XcmEdidKeyValue_s** list, XcmEdidKeyValue_s** list,
int * count ); int * count );
XCM_EDID_ERROR_e XcmEdidFree ( XcmEdidKeyValue_s** list ); XCM_EDID_ERROR_e XcmEdidFree ( XcmEdidKeyValue_s** list );
const char * XcmEdidErrorToString(XCM_EDID_ERROR_e error ); const char * XcmEdidErrorToString(XCM_EDID_ERROR_e error );
/* convinience functions */ /* convinience functions */
XCM_EDID_ERROR_e XcmEdidPrintString ( void * edid, XCM_EDID_ERROR_e XcmEdidPrintString ( void * edid,
char ** text, char ** text,
void *(*alloc)(size_t sz ) ); void *(*alloc)(size_t sz ) );
XCM_EDID_ERROR_e XcmEdidPrintOpenIccJSON ( void * edid,
char ** text,
void *(*alloc)(size_t sz
) );
/** full length vendor, string */ /** full length vendor, string */
#define XCM_EDID_KEY_VENDOR "vendor" #define XCM_EDID_KEY_VENDOR "vendor"
/** full length device model, string */ /** full length device model, string */
#define XCM_EDID_KEY_MODEL "model" #define XCM_EDID_KEY_MODEL "model"
/** full length device serial number, string */ /** full length device serial number, string */
#define XCM_EDID_KEY_SERIAL "serial" #define XCM_EDID_KEY_SERIAL "serial"
/** colorimetric primary red CIE*xyY x component, double */ /** colorimetric primary red CIE*xyY x component, double */
#define XCM_EDID_KEY_REDx "redx" #define XCM_EDID_KEY_REDx "redx"
/** colorimetric primary red CIE*xyY y component, double */ /** colorimetric primary red CIE*xyY y component, double */
#define XCM_EDID_KEY_REDy "redy" #define XCM_EDID_KEY_REDy "redy"
 End of changes. 2 change blocks. 
1 lines changed or deleted 5 lines changed or added

This html diff was produced by rfcdiff 1.41. The latest version is available from http://tools.ietf.org/tools/rfcdiff/