mirror of
https://github.com/akuker/RASCSI.git
synced 2024-12-22 15:30:09 +00:00
c41373d9bd
* Using lambdas instead of member function pointers simplifies the command dispatching and reduces the code volume * Removed duplicate error handling * Fix for issue #956 * Unit test updates * Resolved SonarQube issues
35 lines
891 B
C++
35 lines
891 B
C++
//---------------------------------------------------------------------------
|
|
//
|
|
// SCSI Target Emulator RaSCSI Reloaded
|
|
// for Raspberry Pi
|
|
//
|
|
// Copyright (C) 2022 Uwe Seimet
|
|
//
|
|
//---------------------------------------------------------------------------
|
|
|
|
#pragma once
|
|
|
|
#include "scsi.h"
|
|
#include "rascsi_interface.pb.h"
|
|
#include <string>
|
|
#include <memory>
|
|
#include <filesystem>
|
|
|
|
using namespace std;
|
|
using namespace filesystem;
|
|
using namespace rascsi_interface;
|
|
|
|
class PrimaryDevice;
|
|
class MockAbstractController;
|
|
|
|
shared_ptr<PrimaryDevice> CreateDevice(PbDeviceType, MockAbstractController&, const string& = "");
|
|
|
|
void TestInquiry(PbDeviceType, scsi_defs::device_type, scsi_defs::scsi_level, const string&,
|
|
int, bool, const string& = "");
|
|
|
|
pair<int, path> OpenTempFile();
|
|
path CreateTempFile(int);
|
|
|
|
int GetInt16(const vector<byte>&, int);
|
|
uint32_t GetInt32(const vector<byte>&, int);
|