/usr/include/GraphicsMagick/wand/wand_api.h is in libgraphicsmagick1-dev 1.3.18-1ubuntu3.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 | /*
Copyright (C) 2003-2009 GraphicsMagick Group
GraphicsMagick Wand API Methods
*/
#ifndef _MAGICK_WAND_API_H
#define _MAGICK_WAND_API_H
#if defined(__cplusplus) || defined(c_plusplus)
extern "C" {
#endif
#include <wand/wand_symbols.h>
#include <magick/api.h>
#if defined(_VISUALC_)
/**
* Under VISUALC we have single threaded static libraries, or
* mutli-threaded DLLs using the multithreaded runtime DLLs.
**/
# if defined(_MT) && defined(_DLL) && !defined(_LIB)
# pragma warning( disable: 4273 ) /* Disable the stupid dll linkage warnings */
# if !defined(_WANDLIB_)
# define WandExport __declspec(dllimport)
# else
# define WandExport __declspec(dllexport)
# endif
# else
# define WandExport
# endif
# pragma warning(disable : 4018)
# pragma warning(disable : 4244)
# pragma warning(disable : 4142)
#else
# define WandExport
#endif
#include <wand/drawing_wand.h>
#include <wand/magick_wand.h>
#include <wand/pixel_wand.h>
#if defined(__cplusplus) || defined(c_plusplus)
}
#endif /* defined(__cplusplus) || defined(c_plusplus) */
#endif /* _MAGICK_WAND_API_H */
/*
* Local Variables:
* mode: c
* c-basic-offset: 2
* fill-column: 78
* End:
*/
|