各位高人,VC++2008怎么看别人的程序是基于什么创建的,如MFC,ATL,还是WIN32?
我怎么看来看去什么都不像呢。
这个程序主要是做一个windows的服务程序,与我用ATL建的完全不一样。其中其stdafx.h如下:#pragma once#define WINVER 0x0500
#define _WIN32_WINNT 0x0500
#define _WIN32_IE 0x0600#include <stdio.h>
#include <stdlib.h>
#include <malloc.h>
#include <memory.h>
#include <tchar.h>
#include <crtdbg.h>
#include <process.h>
#include <locale.h>
#define WIN32_LEAN_AND_MEAN#include <windows.h>
#include <winsock2.h>主函数为:
int APIENTRY _tWinMain( HINSTANCE hInst, HINSTANCE, LPTSTR, int )
{
    //好像都是自己写的代码
}有资源文件:.rc和.rc2。其中资源包括一个Icon和String Table.除以上这些之外,好像都是自己写的代码了。请问这种项目,是基于什么创建的?谢谢!!!!!!!