main.h 558 B

123456789101112131415161718192021222324
  1. #pragma once
  2. #include "../Winamp/in2.h"
  3. extern In_Module plugin;
  4. #include <windows.h>
  5. #include "../Winamp/wa_ipc.h"
  6. extern IVideoOutput *videoOutput;
  7. LRESULT CALLBACK WndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam);
  8. extern WNDPROC oldVidProc;
  9. #include "SWFContainer.h"
  10. extern SWFContainer *activeContainer;
  11. extern int playPosition;
  12. extern int playLength;
  13. extern int volume, pan;
  14. void SetVolume(int _volume);
  15. void SetPan(int _pan);
  16. #include "../nu/AutoLock.h"
  17. extern Nullsoft::Utility::LockGuard statusGuard;
  18. extern wchar_t status[256];