mirror of
https://github.com/libretro/Play-.git
synced 2025-01-07 09:00:25 +00:00
21 lines
298 B
C++
21 lines
298 B
C++
#ifndef _OUTPUTWND_H_
|
|
#define _OUTPUTWND_H_
|
|
|
|
#include "win32/Window.h"
|
|
|
|
class COutputWnd : public Framework::Win32::CWindow
|
|
{
|
|
public:
|
|
COutputWnd(HWND);
|
|
virtual ~COutputWnd();
|
|
|
|
protected:
|
|
long OnPaint() override;
|
|
long OnEraseBkgnd() override;
|
|
|
|
private:
|
|
|
|
};
|
|
|
|
#endif
|