AppleWin/source/frontends/common2/commonframe.h
Andrea Odetti ad6ca9c940 Move Initialise/Destroy Emulator to LinuxFrame.
Signed-off-by: Andrea Odetti <mariofutire@gmail.com>
2021-12-04 12:42:02 +00:00

24 lines
419 B
C++

#pragma once
#include "linux/linuxframe.h"
#include <vector>
#include <string>
namespace common2
{
class CommonFrame : public LinuxFrame
{
public:
CommonFrame();
BYTE* GetResource(WORD id, LPCSTR lpType, DWORD expectedSize) override;
protected:
static std::string getBitmapFilename(const std::string & resource);
const std::string myResourcePath;
std::vector<BYTE> myResource;
};
}