ReadMe for main.rc

==Difference between GENERIC.RC and DIALOGS.DLG==

This RC file is based on the GENERIC.RC file in the original 16-bit version.
It is different from the DIALOGS\DIALOGS.DLG file of the original 16-bit
application.

DIALOGS.DLG includes DIALOGS.H using an RCDATA resource mentioning
"DIALOGS.H\0".  GENERIC.RC directly uses #include preprocessing instructions to
include "windows.h" and "main.h" files.

GENERIC.RC includes definition for AClockMenu and AboutBox, while DIALOGS.DLG
doesn't.  GENERIC.RC uses names for the dialogs, while DIALOGS.DLG uses a
number for the dialog.  Thus, resource names are used in GENERIC.C, and
MAKEINTRESOURCE is not used in GENERIC.C.

The LTEXT type of resource is left-aligned static text.  In DIALOGS.DLG every
LTEXT has an associated id.  In GENERIC.C, LTEXT controls that aren't
referenced in the code don't have ids.  Despite this, ids in GENERIC.H must not
conflict with the auto-generated ids in DIALOGS.DLG, so ids in GENERIC.H for
dialog controls begin from 201.

The LTEXT "Formats of the time: ..." doesn't contain newline characters in
DIALOGS.DLG.  This a limit of the QCWIN (QuickC for Windows version 1.0) dialog
editor.  In GENERIC.RC, the corresponding string contains newline characters.
