编译一程序,提示错误如下,困扰一天,求指教
\dbuffer\stdafx.h(29) : fatal error C1083: Cannot open include file: 'gdiplus.h': No such file or directory其中gdiplus.h是自定义的头文件,在目录中也已找到,就是打不开,不知为何?
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__34D25BC5_5DB4_45F9_A273_628ACF67E0BC__INCLUDED_)
#define AFX_STDAFX_H__34D25BC5_5DB4_45F9_A273_628ACF67E0BC__INCLUDED_#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000#define VC_EXTRALEAN
// Exclude rarely-used stuff from Windows headers#include   <afxtempl.h> 
#include <afxwin.h>         // MFC core and standard components
#include <afxext.h>         // MFC extensions
#include <afxdisp.h>        // MFC Automation classes
#include <afxdtctl.h> // MFC support for Internet Explorer 4 Common Controls
#define ULONG_PTR ULONG
#ifndef _AFX_NO_AFXCMN_SUPPORT
#include <afxcmn.h> // MFC support for Windows Common Controls
#endif // _AFX_NO_AFXCMN_SUPPORT
#include <gdiplus.h>
#pragma comment(lib,"gdiplus.lib")
using namespace Gdiplus;
//{{AFX_INSERT_LOCATION}}
// Microsoft Visual C++ will insert additional declarations immediately before the previous line.#endif // !defined(AFX_STDAFX_H__34D25BC5_5DB4_45F9_A273_628ACF67E0BC__INCLUDED_)