winamp/Src/Plugins/Input/in_swf/SWFThread.cpp
2024-09-24 14:54:57 +02:00

27 lines
502 B
C++

#include "main.h"
#include "api.h"
#include "SWFContainer.h"
SWFContainer *activeContainer=0;
WNDPROC oldVidProc=0;
LRESULT CALLBACK WndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam)
{
PAINTSTRUCT ps;
HDC hdc;
switch (message)
{
case WM_SIZE:
activeContainer->SyncSizeToWindow(hWnd);
break;
case WM_ERASEBKGND:
return 1;
case WM_PAINT:
hdc = BeginPaint(hWnd, &ps);
EndPaint(hWnd, &ps);
break;
}
return CallWindowProc(oldVidProc, hWnd, message, wParam, lParam);
}