//--------------------------------------------------------------------------- // // SCSI Target Emulator RaSCSI Reloaded // for Raspberry Pi // // Copyright (C) 2022 Uwe Seimet // // Shared code for SCSI command implementations // //--------------------------------------------------------------------------- #pragma once #include "os.h" #include #include using namespace std; namespace scsi_command_util { void ModeSelect(const DWORD *, const BYTE *, int, int); void EnrichFormatPage(map>&, bool, int); void AddAppleVendorModePage(map>&, int, bool); }