mirror of
https://gitlab.com/Mr_Goldberg/goldberg_emulator.git
synced 2024-10-30 21:20:10 +00:00
34 lines
1022 B
C
34 lines
1022 B
C
|
|
||
|
#ifndef ISTEAMREMOTESTORAGE001_H
|
||
|
#define ISTEAMREMOTESTORAGE001_H
|
||
|
#ifdef STEAM_WIN32
|
||
|
#pragma once
|
||
|
#endif
|
||
|
|
||
|
class ISteamRemoteStorage001
|
||
|
{
|
||
|
public:
|
||
|
// NOTE
|
||
|
//
|
||
|
// Filenames are case-insensitive, and will be converted to lowercase automatically.
|
||
|
// So "foo.bar" and "Foo.bar" are the same file, and if you write "Foo.bar" then
|
||
|
// iterate the files, the filename returned will be "foo.bar".
|
||
|
//
|
||
|
|
||
|
// file operations
|
||
|
virtual bool FileWrite( const char *pchFile, const void *pvData, int32 cubData ) = 0;
|
||
|
virtual int32 GetFileSize( const char *pchFile ) = 0;
|
||
|
virtual int32 FileRead( const char *pchFile, void *pvData, int32 cubDataToRead ) = 0;
|
||
|
virtual bool FileExists( const char *pchFile ) = 0;
|
||
|
virtual bool FileDelete( const char *pchFile ) = 0;
|
||
|
|
||
|
// iteration
|
||
|
virtual int32 GetFileCount() = 0;
|
||
|
virtual const char *GetFileNameAndSize( int iFile, int32 *pnFileSizeInBytes ) = 0;
|
||
|
|
||
|
// quota management
|
||
|
virtual bool GetQuota( int32 *pnTotalBytes, int32 *puAvailableBytes ) = 0;
|
||
|
};
|
||
|
|
||
|
#endif // ISTEAMREMOTESTORAGE001_H
|