You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Oct 16, 2021. It is now read-only.
When Visual C++ reads the #include'd .RC file, it merges the #include'd
resources into the parent .RC file. When you save the parent .RC file,
the #include statement, in effect, will be replaced by the #include'd
resources.
Visual C++ recognizes three specific TEXTINCLUDE resources that have the
resource identification numbers 1, 2 and 3:
Symbol Header File
Read-Only Symbol Directives
Compile-Time Directives
TEXTINCLUDE
.rc files have 3 hard-coded TEXTINCLUDE regions.
TEXTINCLUDE-generated code gets discarded by the GUI (via #ifndef APSTUDIO_INVOKED statements), and regenerated from TEXTINCLUDE upon saving(?) (via #ifdef APSTUDIO_INVOKED).
TEXTINCLUDE is used to protect #include statements from being expanded by the GUI.