mirror of
https://github.com/libretro/Play-.git
synced 2025-03-04 09:17:50 +00:00
15 lines
244 B
C++
15 lines
244 B
C++
#pragma once
|
|
|
|
#include "Iop_FileIo.h"
|
|
|
|
namespace Iop
|
|
{
|
|
class CFileIoHandler1000 : public CFileIo::CHandler
|
|
{
|
|
public:
|
|
CFileIoHandler1000(CIoman*);
|
|
|
|
virtual void Invoke(uint32, uint32*, uint32, uint32*, uint32, uint8*) override;
|
|
};
|
|
}
|