diff options
author | Jean-Francois Mauguit <jfmauguit@mac.com> | 2024-09-24 09:03:25 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-09-24 09:03:25 -0400 |
commit | bab614c421ed7ae329d26bf028c4a3b1d2450f5a (patch) | |
tree | 12f17f78986871dd2cfb0a56e5e93b545c1ae0d0 /Src/installer/SDK/ml_api.nsh | |
parent | 4bde6044fddf053f31795b9eaccdd2a5a527d21f (diff) | |
parent | 20d28e80a5c861a9d5f449ea911ab75b4f37ad0d (diff) | |
download | winamp-bab614c421ed7ae329d26bf028c4a3b1d2450f5a.tar.gz |
Merge pull request #5 from WinampDesktop/community
Merge to main
Diffstat (limited to 'Src/installer/SDK/ml_api.nsh')
-rw-r--r-- | Src/installer/SDK/ml_api.nsh | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/Src/installer/SDK/ml_api.nsh b/Src/installer/SDK/ml_api.nsh new file mode 100644 index 00000000..9360252d --- /dev/null +++ b/Src/installer/SDK/ml_api.nsh @@ -0,0 +1,20 @@ +; media library API +SetOutPath $INSTDIR\gen_ml +File ${GenPlugins}\gen_ml\ml.h +File ${GenPlugins}\gen_ml\ml_ipc_0313.h +File ${GenPlugins}\gen_ml\childwnd.h + +; local media API +SetOutPath $INSTDIR\ml_local +File ${LibPlugins}\ml_local\api_mldb.h +File ${LibPlugins}\ml_local\queries.txt + +; Replay Gain API (this should probably be moved out of ml_rg eventually) +SetOutPath $INSTDIR\ml_rg +File ${LibPlugins}\ml_rg\obj_replaygain.h + +; Podcast API +SetOutPath $INSTDIR\ml_wire +File ${LibPlugins}\ml_wire\api_podcasts.h +File ${LibPlugins}\ml_wire\ifc_podcast.h +File ${LibPlugins}\ml_wire\ifc_article.h
\ No newline at end of file |