Files
ppsspp/Windows/GPU/WindowsGraphicsContext.h

10 lines
234 B
C
Raw Permalink Normal View History

#pragma once
#include "Common/GraphicsContext.h"
#include "Common/CommonWindows.h"
class WindowsGraphicsContext : public GraphicsContext {
public:
virtual bool Init(HINSTANCE hInst, HWND window, std::string *error_message) = 0;
};