请教VC++6.0

来源:百度知道 编辑:UC知道 时间:2024/05/23 01:30:44
谁知道stdafx.h的源代码

没那么多吧?不就这么点:
// stdafx.h : include file for standard system include files,
// or project specific include files that are used frequently, but
// are changed infrequently
//

#if !defined(AFX_STDAFX_H__7330DD18_AF94_4502_9032_2568D875BF15__INCLUDED_)
#define AFX_STDAFX_H__7330DD18_AF94_4502_9032_2568D875BF15__INCLUDED_

#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000

#define WIN32_LEAN_AND_MEAN // Exclude rarely-used stuff from Windows headers

#include <stdio.h>

// TODO: reference additional headers your program requires here

//{{AFX_INSERT_LOCATION}}
// Microsoft Visual C++ will insert additional declarations immediately before the previous line.

#endif // !defined(AFX_STDAFX_H__7330DD18_AF94_4502_9032_2568D875BF15__INCLUDED_)

自己看啊,VC++工程编译后包含的文件里有的
好像是一些头文件的包含

// stdafx.h : include file for standard system include files,