summaryrefslogtreecommitdiff
path: root/core/src/fxge/Microsoft SDK/include/GdiPlusImageCodec.h
diff options
context:
space:
mode:
authorJohn Abd-El-Malek <jabdelmalek@google.com>2014-05-23 17:49:55 -0700
committerJohn Abd-El-Malek <jabdelmalek@google.com>2014-05-23 17:56:14 -0700
commit7c83a7cdce99a03841c3b2a66dcabeed68baa354 (patch)
tree59e9590539327d11c17b2b10bd4126a1936447b0 /core/src/fxge/Microsoft SDK/include/GdiPlusImageCodec.h
parent5b51e49beb646a378f5cbaf012ff63c982345e66 (diff)
downloadpdfium-7c83a7cdce99a03841c3b2a66dcabeed68baa354.tar.xz
remove Microsoft SDK
Original patch by Lucas Nihlen <luken@chromium.org>
Diffstat (limited to 'core/src/fxge/Microsoft SDK/include/GdiPlusImageCodec.h')
-rw-r--r--core/src/fxge/Microsoft SDK/include/GdiPlusImageCodec.h73
1 files changed, 0 insertions, 73 deletions
diff --git a/core/src/fxge/Microsoft SDK/include/GdiPlusImageCodec.h b/core/src/fxge/Microsoft SDK/include/GdiPlusImageCodec.h
deleted file mode 100644
index d9ea0386b2..0000000000
--- a/core/src/fxge/Microsoft SDK/include/GdiPlusImageCodec.h
+++ /dev/null
@@ -1,73 +0,0 @@
-/**************************************************************************\
-*
-* Copyright (c) 2000, Microsoft Corp. All Rights Reserved.
-*
-* Module Name:
-*
-* GdiplusImageCodec.h
-*
-* Abstract:
-*
-* APIs for imaging codecs.
-*
-\**************************************************************************/
-
-#ifndef _GDIPLUSIMAGECODEC_H
-#define _GDIPLUSIMAGECODEC_H
-
-//--------------------------------------------------------------------------
-// Codec Management APIs
-//--------------------------------------------------------------------------
-
-inline Status
-GetImageDecodersSize(
- OUT UINT *numDecoders,
- OUT UINT *size)
-{
- return DllExports::GdipGetImageDecodersSize(numDecoders, size);
-}
-
-
-inline Status
-GetImageDecoders(
- IN UINT numDecoders,
- IN UINT size,
- OUT ImageCodecInfo *decoders)
-{
- return DllExports::GdipGetImageDecoders(numDecoders, size, decoders);
-}
-
-
-inline Status
-GetImageEncodersSize(
- OUT UINT *numEncoders,
- OUT UINT *size)
-{
- return DllExports::GdipGetImageEncodersSize(numEncoders, size);
-}
-
-
-inline Status
-GetImageEncoders(
- IN UINT numEncoders,
- IN UINT size,
- OUT ImageCodecInfo *encoders)
-{
- return DllExports::GdipGetImageEncoders(numEncoders, size, encoders);
-}
-
-inline Status
-AddImageCodec(
- IN const ImageCodecInfo* codec)
-{
- return DllExports::GdipAddImageCodec(codec);
-}
-
-inline Status
-RemoveImageCodec(
- IN const ImageCodecInfo* codec)
-{
- return DllExports::GdipRemoveImageCodec(codec);
-}
-
-#endif // _GDIPLUSIMAGECODEC_H