Choose the FileView tab in the Project Workspace and expand by clicking + to see the files generated for your project:
Test.cpp | Contains the implementation of your DLL's exports for an in-process server and the implementation of WinMain for a local server. For a service, this additionally implements all the service management functions. |
Test.def | Typically, contains a list of your DLL's exports. Generated only for an in-process server. |
Test.idl | Includes the definitions for all your interfaces. As an Interface Definition Language (IDL) file, it will be processed by the MIDL compiler to generate the Test.tlb type library and marshaling code. |
Test.rc | Contains the resource information for your project. |
Resource.h | The header file for the resource file. |
StdAfx.cpp | Includes the files StdAfx.h and Atlimpl.cpp. |
StdAfx.h | Includes the ATL header files. |