From 7c83a7cdce99a03841c3b2a66dcabeed68baa354 Mon Sep 17 00:00:00 2001 From: John Abd-El-Malek Date: Fri, 23 May 2014 17:49:55 -0700 Subject: remove Microsoft SDK Original patch by Lucas Nihlen --- core/src/fxge/Microsoft SDK/include/GdiPlusBase.h | 40 ----------------------- 1 file changed, 40 deletions(-) delete mode 100644 core/src/fxge/Microsoft SDK/include/GdiPlusBase.h (limited to 'core/src/fxge/Microsoft SDK/include/GdiPlusBase.h') diff --git a/core/src/fxge/Microsoft SDK/include/GdiPlusBase.h b/core/src/fxge/Microsoft SDK/include/GdiPlusBase.h deleted file mode 100644 index 59f7cc2fee..0000000000 --- a/core/src/fxge/Microsoft SDK/include/GdiPlusBase.h +++ /dev/null @@ -1,40 +0,0 @@ -/**************************************************************************\ -* -* Copyright (c) 1998-2000, Microsoft Corp. All Rights Reserved. -* -* Module Name: -* -* GdiplusBase.h -* -* Abstract: -* -* Represents the base class for GDIPlus memory allocation. -* -\**************************************************************************/ - -#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); - } -}; - -#endif - -- cgit v1.2.3