digitalmars.com                        
Last update Sun Mar 4 11:58:08 2018

Compiling Resources with RC

This chapter describes the Microsoft Resource Compiler (rc) - a tool that compiles resources such as icons, cursors, menus, and dialog boxes, that your application uses. You add the resulting binary resource file to the application's binary file to produce an executable Windows 3.x application.

Note: When building a program with the IDDE, it calls Digital Mars' rcc resource compiler to compile the program's resources (the Digital Mars linker actually binds the resources to the executable). In contrast, rc both compiles the resources and binds them to the executable.

What's in This Chapter

Including Resources in an Application

To include resources in a Windows 3.x application, follow these steps:
  1. Create individual resource files for cursors, icons, bitmaps, dialogs, and fonts, using the appropriate resource editors.
  2. Create a resource script (.rc) file that defines each application resource by specifying its name and description. If the resource is in a separate file, this description includes that file's name. For example, the .rc file might define a cursor resource by naming it SampleCursor, describing it as a resource of type Cursor, and defining it as the cursor contained in the file sample.cur.
  3. Compile the resource script file using rc. The result will be a compiled resource file with the file extension .res.
  4. Add the compiled resources to the application's compiled executable (.exe) file using rc. You can perform this step and the preceding step with a single rc command.

Creating a Resource Script File

After creating individual resource files for the application's icon, cursor, bitmap, font, and dialog resources, create a resource script file. The resource script file always has the .rc extension and is often referred to simply as the .rc file.

The resource script file lists every resource in the application and describes some types of resources in detail:

Create a resource script file using any ASCII text editor. The file can contain resource statements and directives. Resource statements name and describe each resource. Directives are a special type of statement that define an action you want rc to perform on the resource script file before actually compiling it. You can use directives to assign values to names, include the contents of files, and control compilation of the script file. You use directives in a resource script file the same way you use the corresponding C language directives.

Note: A line in the resource script file cannot exceed 256 characters.

Using rc

rc does the following:

To start rc, use the rc command. What you specify on the command line will depend on whether you are compiling resources, adding compiled resources to an executable file, or both. For more information, see the section "Different Ways to Use the rc Command" later in this chapter.

rc command syntax

rc commands have the following form:

rc [options] [resource-file] [executable-file]

The options are command line options. The resource-file is the name of the resource file, and executable-file is the name of the executable with which you want to combine resource-file. These command parameters are described below.

The "options" parameter

rc options are not case-sensitive. For example, -r and -R are equivalent. You can combine single-letter options if they do not require any additional parameters. For example, the command:

rc -R -E -V sample.rc

is equivalent to the command:

rc -REV sample.rc

The options parameter can include one or more of the rc options described in the section below.

Resource-file parameter

The resource-file parameter specifies the name of the script file that contains the names, types, filenames, and descriptions of the resources you want to add to the executable file. It can also specify the name of a compiled resource file in which case rc adds the compiled resources to the executable file.

Executable-file parameter

The executable-file parameter specifies the name of the executable file to which the resources should be added. If you do not specify an executable file, rc uses the executable file with the same name as the script file.

rc Options

This section describes the options you can use with rc.

-D

Defines a symbol for the preprocessor that testable with the #ifdef directive.

You can specify conditional branching in a resource script file based on whether or not a term is defined on the rc command line using the -D option. For example, suppose your application has a pop-up menu, the Debug menu, which you want to appear only during debugging. When you compile the application for normal use, the Debug menu is not included. Your resource script file contains the following statements to define the Debug menu:

MainMenu MENU
BEGIN
...
#ifdef DEBUG
POPUP &Debug
  BEGIN
  MENUITEM &Memory usage, ID_MEMORY
  MENUITEM &Walk data heap, ID_WALK_HEAP
  END
#endif
END

When compiling resources for a debugging version of the application, you include the Debug menu by using the following command:

rc -R -D DEBUG myapp.rc

To compile resources for a version of the application that does not include the Debug menu, you would use the following command:

rc -R myapp.rc

Naming files

These switches control how rc names the executable and resource files it creates.

-FE
Names the executable file
-FO
Renames the resource file

Normally, rc names the compiled resource file after the resource script file and places it in the same directory as the script file. For example, when compiling myapp.rc, you would normally type:

rc -R myapp.rc

rc would then create a compiled resource file named myapp.res in the same directory as myapp.rc.

This option gives the resulting resource file a name that differs from the corresponding resource script file. For example, to name the resulting resource file newfile.res, type:

rc -R -FO newfile.res myapp.rc

Use this option to place the resource file in a different directory. For example, the following command places the compiled resource file myapp.res in the directory c:\resource:

rc -R -FO c:\source\resource\myapp.res myapp.rc

Choosing the directories that rc searches

Normally, rc searches for include files and resource files, such as icon and cursor files, first in the current directory and then in the directories specified by the INCLUDE environment variable. (The PATH environment variable has no effect on the directories rc searches.)

-I

Searches the specified directory before searching the directories specified by the INCLUDE environment variable.

With this option, the compiler searches directories in the following order:

  1. The current directory
  2. The directory or directories you specify by using the -I option, in the order in which they appear on the command line
  3. The list of directories specified by the INCLUDE environment variable, in the order in which the variable lists them, unless you specify the -X option

The following example compiles the resource script file myapp.rc and adds the compiled resources to myapp.exe:

rc -I c:\source\stuff -I d:\resources myapp.rc myapp.exe

When compiling the script file, rc searches for include files and resource files first in the current directory, then in c:\source\stuff and d:\resources, and lastly in the directories specified by the INCLUDE environment variable.

-X

Prevents rc from checking the INCLUDE environment variable when searching for include files or resource files.

If you use this option, the compiler searches for files in the current directory and in any directories you specify using the -I option. The following example compiles the resource script file myapp.rc and adds the compiled resources to myapp. exe:

rc -X -I c:\source\stuff myapp.rc myapp.exe

When compiling the script file, rc searches for include files and resource files first in the current directory and then in c:\source\stuff.

Memory utilization

These options let you specify how your application uses memory.

Note: The Memory options have no effect on applications written for Windows 3.1 or later.

-E

For a DLL, changes the default location of global memory from below the EMS bank line to above it.

-L

Tells Windows that the application uses expanded memory directly, according to the Lotus-Intel-Microsoft Expanded Memory Specification (EMS), version 2.2.

This switch can also be specified as -LIM32.

-M

Assigns each instance of the application task to a distinct EMS bank, when Windows is running with the EMS 4.0 memory configuration. By default, all instances of a task share the same EMS bank.

This option can also be specified as -MULTINST.

-P

Creates a private DLL that is called by only one application. This allows Windows to use memory more efficiently because only one application (or multiple instances of the same application) will be calling into the DLL. For example, in the large-frame EMS memory model, the DLL is loaded above the EMS bank line, freeing memory below the bank line.

-T

Creates an application that runs only with Windows in protected (standard or 386 enhanced) mode. If the user attempts to run the application in real mode, Windows displays a message box telling the user that the application cannot run in real mode.

Optimizing

This option lets you choose whether rc optimizes your resources for preloading.

-K

Disables rc's load-optimization feature. If this option is not specified, the compiler arranges segments and resources in the executable file so that all preloaded information is contiguous. This feature allows Windows to load the application much more quickly.

Without the -K option, all data segments, nondiscardable code segments, and the entry-point code segment will be preloaded, unless any segment and its relocation information exceed 64KB. If the PRELOAD attribute is not assigned to these segments in the module-definition (.def) file when you link your application, the compiler will add the preload attribute and display a warning. Resources and segments will have the same segment alignment. This alignment should be as small as possible to prevent the final executable file from growing unnecessarily large. You can set the alignment using the linker's /alignment option.

Compiling resources separately

This option sets where to place the resources: in a resource file or an executable file.

-R

Creates a resource file from a resource script file.

By default, rc adds the compiled resources to the specified executable file. Sometimes you might want to compile the resources first and then add them to the executable file in separate steps. This can be useful if the contents of a resource file will be stable after initial development. You can save time by compiling resources separately, then adding the compiled resource file to your executable file each time you recompile the executable.

Use the -R option to compile the resources separately, without adding them to the executable file. When you use this option, rc compiles the resource script file and creates a compiled resource file. For example, this command reads the resource script file sample.rc and creates the compiled resource file sample.res:

rc -R sample.rc

The command does not add sample.res to the executable file.

Displaying progress messages

-V

Normally, rc does not display messages that report on its progress as it compiles. You can, however, tell the compiler to display these messages with this option. The following example causes the compiler to report on its progress as it compiles the script file sample.rc, creates the compiled resource file sample.res, and adds the resource file to the executable file sample. exe:

rc -V sample.rc

On-line help

This option displays on-line help for rc.

-H, -?

Displays a list of the rc command line options.

Different Ways to Use the rc Command

This section describes the various ways to use the rc command.

Compiling a resource script file

To compile resources separately, use the rc command in the following form:

rc -R options script-file

With this form, rc ignores the executable file if you specify one.

Compiling and adding to an executable

To compile a resource script file and add the resulting resource file to the executable file, use the rc command in the following form:

rc options script-file executable-file

Creating a DLL without resources

To compile a DLL that does not have a resource file, use the rc command in the following form:

rc options dll-file

With this form, the DLL filename must explicitly have an .exe, .drv, or .dll extension.

Adding resources to an executable

To add a compiled resource (.res) file to an executable file, use the rc command in the following form:

rc options res-file.res executable-file

Home | Runtime Library | IDDE Reference | STL | Search | Download | Forums