winamp/Src/Plugins/Input/in_swf/main.h

25 lines
555 B
C
Raw Normal View History

2024-09-24 12:54:57 +00:00
#pragma once
#include "../Winamp/in2.h"
extern In_Module plugin;
2024-09-29 02:04:03 +00:00
#include <arch.h>
2024-09-24 12:54:57 +00:00
#include "../Winamp/wa_ipc.h"
extern IVideoOutput *videoOutput;
LRESULT CALLBACK WndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam);
extern WNDPROC oldVidProc;
#include "SWFContainer.h"
extern SWFContainer *activeContainer;
extern int playPosition;
extern int playLength;
extern int volume, pan;
void SetVolume(int _volume);
void SetPan(int _pan);
#include "../nu/AutoLock.h"
extern Nullsoft::Utility::LockGuard statusGuard;
extern wchar_t status[256];