currently, if I try to rename a resource symbol that is defined in a #included resource.h of a resource DLL project, VAX fails to locate & rename the actual definition of the symbol in its .rc file.
// MyProj.cpp
#include "resources.h"
LoadString(IDS_ASTRING);
// MyResProj
// resources.h
#define IDS_ASTRING 99
// MyResProj
// English.rc
STRINGTABLE
BEGIN
IDS_ASTRING "This is a string in a resource project"
END
VAX will try to rename IDS_ASTRING in MyProj.cpp, resources.h, but fail to notice English.rc.