gmic_libc.cpp (gmic_3.0.1) | : | gmic_libc.cpp (gmic_3.0.2) | ||
---|---|---|---|---|
skipping to change at line 43 | skipping to change at line 43 | |||
# encouraged to load and test the software's suitability as regards their | # encouraged to load and test the software's suitability as regards their | |||
# requirements in conditions enabling the security of their systems and/or | # requirements in conditions enabling the security of their systems and/or | |||
# data to be ensured and, more generally, to use and operate it in the | # data to be ensured and, more generally, to use and operate it in the | |||
# same conditions as regards security. | # same conditions as regards security. | |||
# | # | |||
# The fact that you are presently reading this means that you have had | # The fact that you are presently reading this means that you have had | |||
# knowledge of the CeCILL-B licenses and that you accept its terms. | # knowledge of the CeCILL-B licenses and that you accept its terms. | |||
# | # | |||
*/ | */ | |||
#include "gmic_libc.h" | #include <string> | |||
#include "CImg.h" | ||||
#include "gmic.h" | #include "gmic.h" | |||
#include "gmic_libc.h" | ||||
GMIC_DLLINTERFACE int GMIC_CALLCONV gmic_delete_external(float* p) { | GMIC_DLLINTERFACE int GMIC_CALLCONV gmic_delete_external(float* p) { | |||
delete[] p; | delete[] p; | |||
return 0; | return 0; | |||
} | } | |||
GMIC_DLLINTERFACE int GMIC_CALLCONV gmic_call(const char* _cmd, unsigned int* _n ofImages, | GMIC_DLLINTERFACE int GMIC_CALLCONV gmic_call(const char* _cmd, unsigned int* _n ofImages, | |||
gmic_interface_image* _images, gmi c_interface_options* _options) { | gmic_interface_image* _images, gmi c_interface_options* _options) { | |||
int err = 0; | int err = 0; | |||
bool no_inplace = _options?_options->no_inplace_processing:false; | bool no_inplace = _options?_options->no_inplace_processing:false; | |||
End of changes. 2 change blocks. | ||||
1 lines changed or deleted | 3 lines changed or added |