mygdiplus.h

来自「vc6.0完整版」· C头文件 代码 · 共 59 行

H
59
字号
#define ULONG_PTR DWORD
//#include "GdiPlus.h" 

//// Ensure that GdiPlus header files work properly with MFC DEBUG_NEW and STL header files.
#define iterator _iterator

#ifdef _DEBUG

namespace Gdiplus
{
	namespace DllExports
	{
#include "GdiplusMem.h"
	};
#ifndef _GDIPLUSBASE_H
#define _GDIPLUSBASE_H
	class GdiplusBase
	{
	public:
		void (operator delete)(void* in_pVoid)
		{
			DllExports::GdipFree(in_pVoid);
		}
		void* (operator new)(size_t in_size)
		{
			return DllExports::GdipAlloc(in_size);
		}
		
		void (operator delete[])(void* in_pVoid)
		{
			DllExports::GdipFree(in_pVoid);
		}
		
		void* (operator new[])(size_t in_size)
		{
			return DllExports::GdipAlloc(in_size);
		}
		
		void * (operator new)(size_t nSize, LPCSTR lpszFileName, int nLine)
		{
			return DllExports::GdipAlloc(nSize);
		}
		
		void operator delete(void* p, LPCSTR lpszFileName, int nLine)
		{
			DllExports::GdipFree(p);
		}
		
	};
#endif // #ifndef _GDIPLUSBASE_H
}
#endif // #ifdef _DEBUG

#include "GdiPlus.h" 
#undef iterator
	//// Ensure that Gdiplus.lib is linked.
#pragma comment(lib, "gdiplus.lib")

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?