HHC4014: The following map definition has an invalid context id: "context id"

Problem: An id has been mapped to something other than a number using the #define statement.

Result: The id will be ignored and a program attempting to use the id will fail.

Solution: Either change the id to a number, or remove the leading "#define" if the id is an HTML file.

It is valid to have an id with this form:

IDH_MYID myid.htm

but it is not valid to have an id with this form:

#define IDH_MYID myid.htm

The use of the keyword "#define" requires the id to be a number.