summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorErich Eckner <git@eckner.net>2015-10-05 11:17:43 +0200
committerErich Eckner <git@eckner.net>2015-10-05 11:17:43 +0200
commitc885f176745cd414a5f4d81fd4c834fde9b8d590 (patch)
tree97db8cb65c75cc27a7c09292252fc2492b98397a
parent8c96738e9bb6dcf45aefa13566824312ff258a8a (diff)
downloadunits-c885f176745cd414a5f4d81fd4c834fde9b8d590.tar.xz
fftw.pas kann nun wisdom im- und exportieren
-rw-r--r--fftw.pas6
1 files changed, 6 insertions, 0 deletions
diff --git a/fftw.pas b/fftw.pas
index b9dee58..6d34a49 100644
--- a/fftw.pas
+++ b/fftw.pas
@@ -115,6 +115,12 @@ procedure fftw_destroy_plan(plan:fftw_plan_double);
procedure fftw_execute(plan:fftw_plan_double);
external fftwlib name 'fftw_execute';
+function fftw_export_wisdom_to_filename(filename: pChar): cardinal;
+ external fftwlib name 'fftw_export_wisdom_to_filename';
+
+function fftw_import_wisdom_from_filename(filename: pChar): cardinal;
+ external fftwlib name 'fftw_import_wisdom_from_filename';
+
{$calling register} {Back to normal!}
procedure fftw_getmem(var p:pointer;size:sizeint);
procedure fftw_freemem(p:pointer);inline;