LoadDLL

From Avisynth wiki
(Difference between revisions)
Jump to: navigation, search
(LoadDLL: add documentation)
m (Syntax and Parameters)
 
Line 20: Line 20:
  
 
== [[Script variables|Syntax and Parameters]] ==
 
== [[Script variables|Syntax and Parameters]] ==
:{{Template:FuncDef|loaddll (clip, string)}}
+
:{{Template:FuncDef|loaddll (string)}}
 
<br>
 
<br>
 
::{{Par2| |string| }}
 
::{{Par2| |string| }}

Latest revision as of 06:00, 26 May 2020

Abstract
Author tsp
Version v1.0
Download LoadDLL10.7z
Category Support filters
License GPLv2
Discussion Doom9 Forum


Contents

[edit] Description

Used to load dll files in AviSynth. Useful if a filter relies on an external dll that are not in the system PATH.

[edit] Requirements


[edit] Syntax and Parameters

loaddll (string)


string   =
Path and file name of the dll to be loaded.
loaddll returns TRUE if it succeeded in loading the dll else FALSE.
Note: PATH can be omitted if the dll file is in the same directory as your AviSynth (*.avs) script.


[edit] Examples

loaddll("C:\fftw3.dll")


[edit] Changelog

Version      Date            Changes
v1.0 2019/03/02 - Updated to AviSynth 2.6 api - x64 binary v1.0 2006/12/18 - Inital release.


[edit] Archived Downloads

Version Download Mirror
v1.0 (x86/x64) LoadDLL10.7z LoadDLL10.7z
v1.0 LoadDll.zip LoadDll.zip


[edit] External Links

  • GitHub - Source code repository.




Back to External Filters

Personal tools