rc.hlp (Table of Contents; Topic list)
Important Notice
The pages on this site contain documentation for very old MS-DOS software, purely for historical purposes. If you're looking for up-to-date documentation, particularly for programming, you should not rely on the information found here, as it will be woefully out of date.
#undef (1.2)
                                                      Up Next Previous
────────────────────────────────────────────────────────────────────────────
 
 
                   The Resource Compiler #undef Directive
 
#undef name
 
This directive removes the current definition of the specified name. All
subsequent occurrences of the name are processed without replacement.
 
Field  Description
────────────────────────────────────────────────────────────────────────────
 
name   Specifies the name to be removed. This value is any combination of
       letters, digits, and punctuation.
 
Example
 
This example removes the definitions for the names "nonzero" and
"USERCLASS".
 
#undef     nonzero
#undef     USERCLASS
 
See Also
 
#define