mirror of
https://onedev.site.tesses.net/tesses-framework
synced 2026-02-08 15:55:46 +00:00
Added bin2h support
This commit is contained in:
@@ -19,6 +19,7 @@
|
||||
#include "TextStreams/StringReader.hpp"
|
||||
#include "TextStreams/StringWriter.hpp"
|
||||
#include "Text/StringConverter.hpp"
|
||||
#include "Text/HeaderGenerator.hpp"
|
||||
#include "Threading/Thread.hpp"
|
||||
#include "Threading/Mutex.hpp"
|
||||
#include "Threading/ThreadPool.hpp"
|
||||
|
||||
11
include/TessesFramework/Text/HeaderGenerator.hpp
Normal file
11
include/TessesFramework/Text/HeaderGenerator.hpp
Normal file
@@ -0,0 +1,11 @@
|
||||
#pragma once
|
||||
#include "../Streams/MemoryStream.hpp"
|
||||
#include "../TextStreams/StringWriter.hpp"
|
||||
|
||||
namespace Tesses::Framework::Text {
|
||||
void GenerateCHeaderFile(Streams::Stream* strm,std::string name, TextStreams::TextWriter* writer);
|
||||
|
||||
std::string GenerateCHeaderFile(Streams::Stream* strm,std::string name);
|
||||
void GenerateCHeaderFile(const std::vector<uint8_t>& data,std::string name, TextStreams::TextWriter* writer);
|
||||
std::string GenerateCHeaderFile(const std::vector<uint8_t>& data,std::string name);
|
||||
}
|
||||
Reference in New Issue
Block a user