mirror of
https://github.com/hrydgard/ppsspp.git
synced 2024-11-23 13:30:02 +00:00
1ea11c233c
Buildfixes More buildfix headless buildfix One more buildfix
10 lines
234 B
C++
10 lines
234 B
C++
#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;
|
|
};
|