2013-04-17 21:09:55 -06:00
|
|
|
// Copyright 2013 Dolphin Emulator Project
|
|
|
|
// Licensed under GPLv2
|
|
|
|
// Refer to the license.txt file included.
|
2008-12-07 21:46:09 -07:00
|
|
|
|
2014-02-10 11:54:46 -07:00
|
|
|
#pragma once
|
2008-12-07 21:46:09 -07:00
|
|
|
|
2013-03-02 18:46:55 -07:00
|
|
|
#include <string>
|
2014-02-17 03:18:15 -07:00
|
|
|
#include <vector>
|
2013-03-02 18:46:55 -07:00
|
|
|
|
2014-02-17 03:18:15 -07:00
|
|
|
#include "DiscIO/Filesystem.h"
|
2008-12-07 21:46:09 -07:00
|
|
|
|
|
|
|
namespace DiscIO
|
|
|
|
{
|
|
|
|
class IBannerLoader
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
|
|
|
|
IBannerLoader()
|
|
|
|
{}
|
|
|
|
|
|
|
|
|
|
|
|
virtual ~IBannerLoader()
|
|
|
|
{}
|
|
|
|
|
|
|
|
|
|
|
|
virtual bool IsValid() = 0;
|
|
|
|
|
2013-09-25 01:05:36 -06:00
|
|
|
virtual std::vector<u32> GetBanner(int* pWidth, int* pHeight) = 0;
|
2008-12-07 21:46:09 -07:00
|
|
|
|
2013-03-02 18:46:55 -07:00
|
|
|
virtual std::vector<std::string> GetNames() = 0;
|
|
|
|
virtual std::string GetCompany() = 0;
|
|
|
|
virtual std::vector<std::string> GetDescriptions() = 0;
|
2008-12-07 21:46:09 -07:00
|
|
|
};
|
|
|
|
|
2009-06-06 20:54:07 -06:00
|
|
|
IBannerLoader* CreateBannerLoader(DiscIO::IFileSystem& _rFileSystem, DiscIO::IVolume *pVolume);
|
2008-12-07 21:46:09 -07:00
|
|
|
} // namespace
|