fixed storage_interface document typo

This commit is contained in:
Arvid Norberg 2008-09-04 11:21:01 +00:00
parent 5a3995aad3
commit e4e0d3f062
1 changed files with 2 additions and 2 deletions

View File

@ -4490,7 +4490,7 @@ this::
virtual int read(char* buf, int slot, int offset, int size) = 0;
virtual int write(const char* buf, int slot, int offset, int size) = 0;
virtual bool move_storage(fs::path save_path) = 0;
virtual bool verify_resume_data(lazy_entry& rd, std::string& error) = 0;
virtual bool verify_resume_data(lazy_entry const& rd, std::string& error) = 0;
virtual bool write_resume_data(entry& rd) const = 0;
virtual bool move_slot(int src_slot, int dst_slot) = 0;
virtual bool swap_slots(int slot1, int slot2) = 0;
@ -4563,7 +4563,7 @@ verify_resume_data()
::
bool verify_resume_data(lazy_entry& rd, std::string& error) = 0;
bool verify_resume_data(lazy_entry const& rd, std::string& error) = 0;
This function should verify the resume data ``rd`` with the files
on disk. If the resume data seems to be up-to-date, return true. If