This is basically an extension of the question here.
I am working on an old MFC application where it seems the resource.h file has been manually edited and has gone messy. I see that there are conflicting IDs in there.
I just want to confirm if we can have two resources with the same ID of different type. For example, I have something like
IDD_1 101
IDS_2 101
or
IDR_1 102
IDS_2 102
Basically, there are resources defined with the same ID, but of different types.
A comment to the original question says that Resources of the same type don't share identifiers
. If that is true, is it also valid for the IDR_xxxx
IDs?
I am asking because I am using the Resource ID Organiser which seems to think that all IDs must be unique.