002
05.09.2005, 13:08 Uhr
uzzman
|
C++: |
#ifndef BIOFILTERDLL_H #define BIOFILTERDLL_H
#include "image.h"
#ifdef WIN32 #ifdef __cplusplus #define IMPORT extern "C" __declspec (dllimport) #else #define IMPORT __declspec (dllimport) #endif #else #define IMPORT #endif
IMPORT char BioFilterLastError[];
IMPORT void BioFilterConvertFFT(float *fftbuffer,int fftsize,int sign); IMPORT void BioFilterFFT(float *fftbuffer,int fftsize,int sign);
IMPORT void BioFilterInvert(IMAGE *img); IMPORT void BioFilterNormalize(IMAGE *img); IMPORT void BioFilterClip(IMAGE *img,float low,float high); IMPORT void BioFilterScale(IMAGE *img,float m,float n);
#endif
|
|