summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGeorge Hazan <george.hazan@gmail.com>2012-06-24 18:28:37 +0000
committerGeorge Hazan <george.hazan@gmail.com>2012-06-24 18:28:37 +0000
commitc796381b41c3db711caccd3b0c629b41a723ea19 (patch)
tree59e216e979b30a7e62a4206a95727fd5faebafbe
parentb7df52b520969db080204f1dcf95a53a02d9e02e (diff)
another duplicate removed
git-svn-id: http://svn.miranda-ng.org/main/trunk@610 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
-rw-r--r--plugins/ExternalAPI/m_png.h64
1 files changed, 0 insertions, 64 deletions
diff --git a/plugins/ExternalAPI/m_png.h b/plugins/ExternalAPI/m_png.h
deleted file mode 100644
index 46ff96ec2c..0000000000
--- a/plugins/ExternalAPI/m_png.h
+++ /dev/null
@@ -1,64 +0,0 @@
-/*
-Plugin of Miranda IM for reading/writing PNG images.
-Copyright (c) 2004-6 George Hazan (ghazan@postman.ru)
-
-Portions of this code are gotten from the libpng codebase.
-Copyright 2000, Willem van Schaik. For conditions of distribution and
-use, see the copyright/license/disclaimer notice in png.h
-
-Miranda IM: the free icq client for MS Windows
-Copyright (C) 2000-2002 Richard Hughes, Roland Rabien & Tristan Van de Vreede
-
-This program is free software; you can redistribute it and/or
-modify it under the terms of the GNU General Public License
-as published by the Free Software Foundation; either version 2
-of the License, or (at your option) any later version.
-
-This program is distributed in the hope that it will be useful,
-but WITHOUT ANY WARRANTY; without even the implied warranty of
-MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-GNU General Public License for more details.
-
-You should have received a copy of the GNU General Public License
-along with this program; if not, write to the Free Software
-Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
-
-File name : $Source: /cvsroot/miranda/miranda/plugins/png2dib/m_png.h,v $
-Revision : $Revision: 3502 $
-Last change on : $Date: 2006-08-15 23:21:49 +0200 (Di, 15 Aug 2006) $
-Last change by : $Author: ghazan $
-
-*/
-
-/* Image/Dib2Png
-Converts a Device Independent Bitmap to a png stored in memory
- wParam=0
- lParam=(WPARAM)(DIB2PNG*)descr
-*/
-
-typedef struct
-{
- BITMAPINFO* pbmi;
- BYTE* pDiData;
- BYTE* pResult;
- long* pResultLen;
-}
- DIB2PNG;
-
-#define MS_DIB2PNG "Image/Dib2Png"
-
-/* Image/Png2Dib
-Converts a png stored in memory to a Device Independent Bitmap
- wParam=0
- lParam=(WPARAM)(PNG2DIB*)descr
-*/
-
-typedef struct
-{
- BYTE* pSource;
- DWORD cbSourceSize;
- BITMAPINFOHEADER** pResult;
-}
- PNG2DIB;
-
-#define MS_PNG2DIB "Image/Png2Dib"