bin2cpp icon indicating copy to clipboard operation
bin2cpp copied to clipboard

bin2cpp: The easiest way to embed small files into a c++ executable. bin2cpp converts text or binary files to C++ files (*.h, *.cpp) for easy access within the code.

Results 8 bin2cpp issues
Sort by recently updated
recently updated
newest added

Hi, I am using Ultralig.ht to make a C++ application with html frontend and was trying to find a way to hide my html files from the customer. I think...

On Windows, the installation packages (msi,exe and zip) contains the build artifacts of samples projects. For examples, the zip package `bin2cpp-3.0.0-win64.zip` contains the following directories : * samples\demo_helloworld\outdir * samples\demo_icons\outdir...

bug
code cleanup

A command line option should be created for setting the pattern for resolving duplicate file names. The current implementation uses a pattern such as `_[counter]` (where `[counter]` is replaced by...

enhancement

Create an option to set a prefix to add in front of generated files. For example, when this option is set to `file_`, the generated files with `--dir` mode should...

enhancement

The application is storing all command line arguments to an `ARGUMENTS` structure. Then almost all field of this structure must be passed to `IGenerator`. A `Context` should be created which...

enhancement
code cleanup

A command line option should be created for setting the pattern for resolving duplicate function identifiers. The current implementation uses a pattern such as `_[counter]` (where `[counter]` is replaced by...

enhancement

It might be a good idea to enable the generation of c-only code. In other words, one could configure the application to generate code that do not rely on c++...

enhancement

The filter could be specified with `--filter=` and be wildcard based and support characters like `*` and `?`. For instance: * `--filter=*.jpg` * `--filter=*.bin` * `--filter=IMG_?????.jpg` This functionality would also...

enhancement