End Google Ads 201810 - BS.net 01 --> I ‘inherited’ some small VC6 c++ project, which creates Win service. I build it in VS2008, but it could not find included Event Messages in it.
Messages should be included in exe not dll ( program itself runs ok: I’m able to register service, run it and stop it.) I have one more rc file in project. So, I have LogMsg.mc with messages and MyPrjct.rc with other resources. During compile time mc.exe (I have SDK 6.1) creates three files:.bin, LogMsg.h, LogMsg.rc. Header file goes into MyPrjct.cpp; I put line ‘#include “LogMsg.rc”’ into MyPrjct.rc, and use ReportEvent(…) to retrieve/write event message, using SymbolicName, but it could not find messages exe.
I need to solve this problem as fast as possible.