mirror of
https://github.com/akuker/RASCSI.git
synced 2024-11-19 12:32:29 +00:00
08194af424
- Moved C++ code to cpp/ from src/raspberrypi - Related updates to Makefile, easyinstall.sh, and the github build rules - Removed the native X68k C code in src/x68k from the repo
43 lines
851 B
C++
43 lines
851 B
C++
//---------------------------------------------------------------------------
|
||
//
|
||
// X68000 EMULATOR "XM6"
|
||
//
|
||
// Copyright (C) 2001-2005 PI.(ytanaka@ipc-tokai.or.jp)
|
||
// Copyright (C) 2013-2020 GIMONS
|
||
// [ File I/O (Subset for RaSCSI) ]
|
||
//
|
||
//---------------------------------------------------------------------------
|
||
|
||
#pragma once
|
||
|
||
#include "os.h"
|
||
#include <cstdlib>
|
||
|
||
class Fileio
|
||
{
|
||
public:
|
||
|
||
enum class OpenMode {
|
||
ReadOnly,
|
||
WriteOnly,
|
||
ReadWrite
|
||
};
|
||
|
||
Fileio() = default;
|
||
virtual ~Fileio();
|
||
Fileio(Fileio&) = default;
|
||
Fileio& operator=(const Fileio&) = default;
|
||
|
||
bool Open(const char *fname, OpenMode mode);
|
||
bool Read(BYTE *buffer, int size) const;
|
||
bool Write(const BYTE *buffer, int size) const;
|
||
off_t GetFileSize() const;
|
||
void Close();
|
||
|
||
private:
|
||
|
||
bool Open(const char *fname, OpenMode mode, bool directIO);
|
||
|
||
int handle = -1;
|
||
};
|