22 lines
502 B
C++
22 lines
502 B
C++
|
#pragma once
|
||
|
|
||
|
#include <hex.hpp>
|
||
|
|
||
|
#include <hex/helpers/literals.hpp>
|
||
|
|
||
|
#include <string>
|
||
|
#include <vector>
|
||
|
|
||
|
namespace hex::prv { class Provider; }
|
||
|
|
||
|
namespace hex::magic {
|
||
|
|
||
|
using namespace hex::literals;
|
||
|
|
||
|
bool compile();
|
||
|
std::string getDescription(const std::vector<u8> &data);
|
||
|
std::string getDescription(prv::Provider *provider, size_t size = 5_MiB);
|
||
|
std::string getMIMEType(const std::vector<u8> &data);
|
||
|
std::string getMIMEType(prv::Provider *provider, size_t size = 5_MiB);
|
||
|
|
||
|
}
|