diff options
author | Erich Eckner <git@eckner.net> | 2015-10-05 11:17:43 +0200 |
---|---|---|
committer | Erich Eckner <git@eckner.net> | 2015-10-05 11:17:43 +0200 |
commit | c885f176745cd414a5f4d81fd4c834fde9b8d590 (patch) | |
tree | 97db8cb65c75cc27a7c09292252fc2492b98397a | |
parent | 8c96738e9bb6dcf45aefa13566824312ff258a8a (diff) | |
download | units-c885f176745cd414a5f4d81fd4c834fde9b8d590.tar.xz |
fftw.pas kann nun wisdom im- und exportieren
-rw-r--r-- | fftw.pas | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -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; |