mirror of
https://github.com/libretro/Play-.git
synced 2024-11-28 03:00:49 +00:00
20 lines
267 B
C++
20 lines
267 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
|