main.h 572 B

123456789101112131415161718192021222324252627
  1. #ifndef NULLSOFT_IN_FLV_MAIN_H
  2. #define NULLSOFT_IN_FLV_MAIN_H
  3. #include <windows.h>
  4. #include "../Winamp/in2.h"
  5. #include "../nu/VideoClock.h"
  6. #include "../nu/AutoLock.h"
  7. /* main.cpp */
  8. extern In_Module plugin;
  9. extern In_Module *swf_mod;
  10. extern HMODULE in_swf;
  11. extern wchar_t *playFile;
  12. extern HANDLE killswitch;
  13. extern int m_need_seek;
  14. extern int paused;
  15. extern int g_length;
  16. extern nu::VideoClock video_clock;
  17. extern wchar_t *stream_title;
  18. extern Nullsoft::Utility::LockGuard stream_title_guard;
  19. /* PlayThread.cpp */
  20. DWORD CALLBACK PlayProcedure(LPVOID param);
  21. #endif