forked from shinchiro/mpv-winbuild-cmake
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
vapoursynth: include required def files in repo
Instead relying dlls from tarball to generate def file, including VapourSynth.def and VSScript.def is wise choice since the public API doesnt change.
- Loading branch information
shinchiro
committed
Mar 19, 2024
1 parent
ca13aae
commit 4441589
Showing
3 changed files
with
43 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
; | ||
; Definition file of VSScript.dll | ||
; Automatic generated by gendef | ||
; written by Kai Tietz 2008 | ||
; | ||
LIBRARY "VSScript.dll" | ||
EXPORTS | ||
getVSScriptAPI@4 | ||
vsscript_clearEnvironment@4 | ||
vsscript_clearOutput@8 | ||
vsscript_clearVariable@8 | ||
vsscript_createScript@4 | ||
vsscript_evaluateFile@12 | ||
vsscript_evaluateScript@16 | ||
vsscript_finalize@0 | ||
vsscript_freeScript@4 | ||
vsscript_getApiVersion@0 | ||
vsscript_getCore@4 | ||
vsscript_getError@4 | ||
vsscript_getExitCode@4 | ||
vsscript_getOutput2@12 | ||
vsscript_getOutput@8 | ||
vsscript_getVSApi2@4 | ||
vsscript_getVSApi@0 | ||
vsscript_getVariable@12 | ||
vsscript_init@0 | ||
vsscript_setVariable@8 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
; | ||
; Definition file of VapourSynth.dll | ||
; Automatic generated by gendef | ||
; written by Kai Tietz 2008 | ||
; | ||
LIBRARY "VapourSynth.dll" | ||
EXPORTS | ||
getVapourSynthAPI@4 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters