Re: Is there a way to add a data section to an executable?

2019-08-28 Thread AudioGames . net Forum — Developers room : Theo via Audiogames-reflector
Re: Is there a way to add a data section to an executable? You could create an installer that bundles all the data files into the installer executable, then unpacks them into the program folder on installation. URL: https://forum.audiogames.net/post/458112/#p458112 --

Re: Is there a way to add a data section to an executable?

2019-08-25 Thread AudioGames . net Forum — Developers room : Ethin via Audiogames-reflector
Re: Is there a way to add a data section to an executable? @4, no, you can't, not unless your willing to rewrap the program as a new binary image that can execute itself. That's what binary packers do: take the executable image, compress/pack it, and generate a new executable that will

Re: Is there a way to add a data section to an executable?

2019-08-25 Thread AudioGames . net Forum — Developers room : keithwipf1 via Audiogames-reflector
Re: Is there a way to add a data section to an executable? Hi,What I mean is I'd want a way to add an entire new section to a programs executable called, for example, .gdata.I know EXE packers do that. URL: https://forum.audiogames.net/post/457668/#p457668 -- Audiogames-reflector

Re: Is there a way to add a data section to an executable?

2019-08-24 Thread AudioGames . net Forum — Developers room : Ethin via Audiogames-reflector
Re: Is there a way to add a data section to an executable? The section your thinking of is the data segment, called .data. This is not a place for you to store things like text files or audio files (if you did, the program would be malformed). The .data section is where initialized data

Re: Is there a way to add a data section to an executable?

2019-08-24 Thread AudioGames . net Forum — Developers room : Ethin via Audiogames-reflector
Re: Is there a way to add a data section to an executable? The section your thinking of is the data segment, called .data. This is not a place for you to store things like text files or audio files (if you did, the program would be malformed). The .data section is where initialized data

Re: Is there a way to add a data section to an executable?

2019-08-24 Thread AudioGames . net Forum — Developers room : magurp244 via Audiogames-reflector
Re: Is there a way to add a data section to an executable? What language are you using? For Python, you can append arbitrary data to the exe when compiling, which can then be extracted at run time into a temporary working folder. URL: https://forum.audiogames.net/post/457494/#p457494

Is there a way to add a data section to an executable?

2019-08-24 Thread AudioGames . net Forum — Developers room : keithwipf1 via Audiogames-reflector
Is there a way to add a data section to an executable? I'm looking for a way to add a new section to an executable (.EXE) file, so I can store various resources without using an overlay.I didn't find anything on Google, though and I don't have a clue about the PE file format.Would there be