1
0

main.h 498 B

12345678910111213141516171819202122
  1. #ifndef NULLSOFT_NOWPLAYING_PLUGIN_MAIN_HEADER
  2. #define NULLSOFT_NOWPLAYING_PLUGIN_MAIN_HEADER
  3. #if defined(_MSC_VER) && (_MSC_VER >= 1020)
  4. #pragma once
  5. #endif
  6. #include <wtypes.h>
  7. #include "../gen_ml/ml.h"
  8. #include "./common.h"
  9. #define PLUGIN_VERSION_MAJOR 4
  10. #define PLUGIN_VERSION_MINOR 1
  11. HINSTANCE Plugin_GetInstance(void);
  12. HWND Plugin_GetWinamp(void);
  13. HWND Plugin_GetLibrary(void);
  14. #include "../ml_online/config.h"
  15. extern C_Config *g_config;
  16. #endif //NULLSOFT_NOWPLAYING_PLUGIN_MAIN_HEADER