Syntax:
include filename
The include directive causes RC to process the file specified in the filename field. This file should be a header file that defines the constants used in the resource script file. Only the #define directives in the specified file are processed; all other statements are ignored by the Resource Compiler.
filename
Comments
The filename field is handled as a C string. Therefore, you must include two backslashes wherever one is required in the path. (As an alternative, you can use a single forward slash (/) instead of two backslashes.)
Example
This example processes the header files OS2.H and HEADERS\MYDEFS.H\I while compiling the resource script file.
#include <os2.h>#include "headers\\\\mydefs.h"