I have a ATLCOM project migrated from VC6 to VS2008. My question is, how do I build the ps dllon VS 2008?
New ATL projects in VS2008 have a separate PS project which builds the ps dll. But the migration from VC6 did not create this project.
I tried to invoke nmake on the ps mk file but that gives a redefinition error for an enum type which exists in both our source file as well as an automatically included windows header file. In the solution we fixed this by defining the WIN32_LEAN_AND_MEAN
preprocessor which excludes unnecessary header files. Can I do the same while using nmake?
Is there any other way of creating the ps dll?