VideoAspectAdjuster.h 240 B

123456789101112
  1. #ifndef NULLSOFT_VIDEOASPECTADJUSTERH
  2. #define NULLSOFT_VIDEOASPECTADJUSTERH
  3. #include <windows.h>
  4. class VideoAspectAdjuster
  5. {
  6. public:
  7. virtual void adjustAspect(RECT &rd) = 0;
  8. virtual void DrawLogo(HDC out, RECT *canvas_size)=0;
  9. };
  10. #endif