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?
73 Views Asked by user4520 At
1
There are 1 best solutions below
Related Questions in RESOURCE-FILES
- Undefined reference to class methods using Code::Blocks
- C++: Manipulate file resources?
- How resource files in Windows work and why use them?
- by changing language of gridview using resource file(.resx) the layout not remains the same
- Multilingual Approach in ASP.Net Application
- How to correctly add resources in a rc file
- 1 Resource File vs Many
- Generating a list of shortcuts (denoted by button captions containing the & symbol) from resource files
- Text in resource file is not displaying correctly in Chinese
- How to access a resource file that's not in the root of the Resources folder? (Sharepoint 2010)
- Perl Module Resource Files
- Postscript resource files: How to pass function parameters?
- Reading a resource from resx file is very slow
- External/standalone (not linked into .exe) .res file?
- How to use escape sequences in strings contained in resource files
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 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.