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/Plugins/Library/ml_webdev/main.h | |
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/Plugins/Library/ml_webdev/main.h')
-rw-r--r-- | Src/Plugins/Library/ml_webdev/main.h | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/Src/Plugins/Library/ml_webdev/main.h b/Src/Plugins/Library/ml_webdev/main.h new file mode 100644 index 00000000..7762ec9c --- /dev/null +++ b/Src/Plugins/Library/ml_webdev/main.h @@ -0,0 +1,25 @@ +#ifndef NULLSOFT_WEBDEV_PLUGIN_MAIN_HEADER +#define NULLSOFT_WEBDEV_PLUGIN_MAIN_HEADER + +#if defined(_MSC_VER) && (_MSC_VER >= 1020) +#pragma once +#endif + +#include <wtypes.h> +#include "../../General/gen_ml/ml.h" +#include "./common.h" + +#define PLUGIN_VERSION_MAJOR 2 +#define PLUGIN_VERSION_MINOR 34 + +// {BF4F80A7-7470-4b08-8A4C-34382C146202} +DEFINE_GUID(WebDevLangUid, 0xbf4f80a7, 0x7470, 0x4b08, 0x8a, 0x4c, 0x34, 0x38, 0x2c, 0x14, 0x62, 0x2); + +HINSTANCE Plugin_GetInstance(void); +HWND Plugin_GetWinamp(void); +HWND Plugin_GetLibrary(void); + +class Navigation; +HRESULT Plugin_GetNavigation(Navigation **instance); + +#endif //NULLSOFT_WEBDEV_PLUGIN_MAIN_HEADER
\ No newline at end of file |