I want to embed image files in my windows executable. The easiest way I have found is to use windows resource files.
I generated resource.rc and resource.h using visual studio. Next step is to call these resources in my source code. What exactly is happening behind the hood with resource files?
Opening the .rc file in a text editor shows me the resource name and a path to the actual image file. Opening the resources in visual studio shows huge character arrays.
Where are those character arrays being stored? And when are they being generated?