Fix for Missing Version Tab in Microsoft eMbedded Visual C++

Having to work in the dark ages is never fun. My new .exe in Microsoft eMbedded Visual C++ 4.00.1610.0 was providing that experience when I couldn’t get to the Version tab when I invoked the file properties of my .exe in Windows Explorer. The Version tab just wasn’t there. Looking at working projects provided no clue. Turns out in my very thin .exe, when the resources were being compiled, it wasn’t picking up the define for VS_VERSION_INFO. Instead of complaining it happy converted it to a string: “VS_VERSION_INFO”. To get this to work I had to add “#include <windows.h>” to the resource.h file. After a full recompile the Version tab now shows up.