You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
394 B
20 lines
394 B
#pragma once |
|
|
|
#include <cstdint> |
|
#include <string_view> |
|
|
|
#ifdef USE_SDL3 |
|
#include <SDL3/SDL_iostream.h> |
|
#else |
|
#include <SDL.h> |
|
|
|
#include "utils/sdl_compat.h" |
|
#endif |
|
|
|
#include "mpq/mpq_reader.hpp" |
|
|
|
namespace devilution { |
|
|
|
SDL_IOStream *SDL_RWops_FromMpqFile(MpqArchive &mpqArchive, uint32_t fileNumber, std::string_view filename, bool threadsafe); |
|
|
|
} // namespace devilution
|
|
|