ResFile | CodeGuru

ResFile

Environment: VC6, SP5 Warning Level 4.0 compliant Documentation is doxygen compatible ResFile is a nice project that allows reading from the resources of an ordinary DLL (or EXE) just as if it were a normal CFile. There are many useful scenarios. I used it to compile default INI files in my application, for example. The […]

Written By
CodeGuru Staff
CodeGuru Staff
Mar 18, 2003
1 minute read
CodeGuru content and product recommendations are editorially independent. We may make money when you click on links to our partners. Learn More

Environment: VC6, SP5

  • Warning Level 4.0 compliant
  • Documentation is doxygen compatible

ResFile is a nice project that allows reading from the resources of an ordinary DLL (or EXE) just as if it were a normal CFile. There are many useful scenarios. I used it to compile default INI files in my application, for example.

The class CResourceFile is derived from CFile and therefore may be used at any place where CFile could be used. Use it in conjunction with a CArchive to have buffered string reading capabilities.

Remember that, at the moment, only read-only access is implemented. Write access is theoretically also possible (via UpdateResource), but not yet implemented.

CResourceFile reads the complete file when opening it (this is the nature of Windows resource memory reading), keeping it in a buffer. Following Read() Operations are just returning from the buffer.

It is simple to use; just follow these points:

  • You can extract just the class (the two files, ResFile.cpp and ResFile.h, out of the sample project).
  • Just include a resource of type “BINARY” (use the quotation marks in Resource Editor).
  • Pass the constructor the module’s own instance handle; for example, AfxGetApp()->m_hInst.
  • Call Open() and pass the resource name (use MAKEINTRESOURCE if you have only numerical IDs) and CFile::modeRead.
  • Then, call a read and you will have CFile-like access on your resources.

Downloads


Download source – 11 Kb

CodeGuru Logo

CodeGuru covers topics related to Microsoft-related software development, mobile development, database management, and web application programming. In addition to tutorials and how-tos that teach programmers how to code in Microsoft-related languages and frameworks like C# and .Net, we also publish articles on software development tools, the latest in developer news, and advice for project managers. Cloud services such as Microsoft Azure and database options including SQL Server and MSSQL are also frequently covered.

Property of TechnologyAdvice. © 2026 TechnologyAdvice. All Rights Reserved

Advertiser Disclosure: Some of the products that appear on this site are from companies from which TechnologyAdvice receives compensation. This compensation may impact how and where products appear on this site including, for example, the order in which they appear. TechnologyAdvice does not include all companies or all types of products available in the marketplace.