Lioncash a82675b7d5 Kill off some usages of c_str.
Also changes some function params, but this is ok.
Some simplifications were also able to be made (ie. killing off strcmps with ==, etc).
2014-03-14 13:51:23 -04:00

27 lines
486 B
C++

#pragma once
#include <string>
#include "VideoCommon/VideoBackendBase.h"
namespace OGL
{
class VideoBackend : public VideoBackendHardware
{
bool Initialize(void *&) override;
void Shutdown() override;
std::string GetName() override;
std::string GetDisplayName() override;
void Video_Prepare() override;
void Video_Cleanup() override;
void ShowConfig(void* parent) override;
void UpdateFPSDisplay(const std::string&) override;
unsigned int PeekMessages() override;
};
}