LoadDLL
From Avisynth wiki
(Difference between revisions)
(LoadDLL: add documentation) |
m (→Syntax and Parameters) |
||
Line 20: | Line 20: | ||
== [[Script variables|Syntax and Parameters]] == | == [[Script variables|Syntax and Parameters]] == | ||
− | :{{Template:FuncDef|loaddll ( | + | :{{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
- [x86]: AviSynth+ or AviSynth 2.6
- [x64]: AviSynth+
[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.
- string =
[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 |
- x86/x64 version compiled by Groucho2004.
[edit] External Links
- GitHub - Source code repository.
Back to External Filters ←