Skip to content

Instantly share code, notes, and snippets.

@lennyRBLX
lennyRBLX / file parser.cpp
Last active July 2, 2021 09:00
Converts any file's byte's into a Resource Header file. File -> Resource
#include <vector>
#include <Windows.h>
#include <TlHelp32.h>
#include <iostream>
#include <fstream>
std::string file_path = "";
std::string file_endpath = "";
std::string namespace_name = "example_namespace";
std::string namespace_resource_name = "resources";