From my experience .res files are only used in the development stage by MSVC and as such are never shipped with a compiled executable (as described here: http://msdn.microsoft.com/en-us/library/windows/desktop/ms648007%28v=vs.85%29.aspx). However, an old game (2003) I'm playing around with stores all its data - images, sound, fonts - in a single .res file. It was possible to decompile/unpack it easily with 7zip. The question is, is this actually a "standard" resource file as used by MSVC, or did the developers just develop their own format and decided to name it that for whatever reason? How would I go about modifying it?
External/standalone (not linked into .exe) .res file?
75 Views Asked by user4520 At
1
There are 1 best solutions below
Related Questions in RESOURCE-FILES
- Can We Generate Resource.resx and its Designer.cs Files in .NET Core Using Visual Studio Code?
- Programmatically Extracting Version Information from a Windows Resource File
- C# project resource file not found
- Special language constants make the .RC file uneditable
- Specifying application version in Visual Studio 2019
- MFC, my resource file *.rc corrupted after any change I do
- Can I build an android apk without "gradle" on command line?
- Localization in ASP.NET Core using VS Code - "No resources found"
- Populating placeholders in a local resource file
- maven 3.9.1 failing to build project with error: `filtering {file} to {file} failed with MalformedInputException: Input length = 1 -> [Help 1]`
- Using Multiple visual studio .rc files and ID overlaps
- #ifdef gets lost in resource file
- Automatic generation of translation file for Resource.resx is not working
- Is is possible to force passing the key of a resource file entry, not the value?
- C++ modules kill windows resources?
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular # Hahtags
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Got it: it was actually just a zip file, with the extension changed to .res for whatever reason.