Static build of Imagemagick 7.0.5-5
This commit is contained in:
37
bin/7.0.5-5/include/ImageMagick-7/Magick++/Functions.h
Executable file
37
bin/7.0.5-5/include/ImageMagick-7/Magick++/Functions.h
Executable file
@@ -0,0 +1,37 @@
|
||||
// This may look like C code, but it is really -*- C++ -*-
|
||||
//
|
||||
// Copyright Bob Friesenhahn, 1999, 2000, 2001, 2003
|
||||
// Copyright Dirk Lemstra 2014
|
||||
//
|
||||
// Simple C++ function wrappers for often used or otherwise
|
||||
// inconvenient ImageMagick equivalents
|
||||
//
|
||||
|
||||
#if !defined(Magick_Functions_header)
|
||||
#define Magick_Functions_header
|
||||
|
||||
#include "Magick++/Include.h"
|
||||
#include <string>
|
||||
|
||||
namespace Magick
|
||||
{
|
||||
// Clone C++ string as allocated C string, de-allocating any existing string
|
||||
MagickPPExport void CloneString(char **destination_,
|
||||
const std::string &source_);
|
||||
|
||||
// Disable OpenCL acceleration (only works when build with OpenCL support)
|
||||
MagickPPExport void DisableOpenCL(void);
|
||||
|
||||
// Enable OpenCL acceleration (only works when build with OpenCL support)
|
||||
MagickPPExport bool EnableOpenCL(void);
|
||||
|
||||
// C library initialization routine
|
||||
MagickPPExport void InitializeMagick(const char *path_);
|
||||
|
||||
// Seed a new sequence of pseudo-random numbers
|
||||
MagickPPExport void SetRandomSeed(const unsigned long seed);
|
||||
|
||||
// C library initialization routine
|
||||
MagickPPExport void TerminateMagick();
|
||||
}
|
||||
#endif // Magick_Functions_header
|
||||
Reference in New Issue
Block a user