diff options
author | Thomas Arnhold <thomas@arnhold.org> | 2012-06-26 19:14:44 +0200 |
---|---|---|
committer | Thomas Arnhold <thomas@arnhold.org> | 2012-06-27 13:34:35 +0200 |
commit | bbac35af148ed6c9f19386e4721fa38b500f45a1 (patch) | |
tree | 43ee01225670f082bafe9c786d32a0aab548563a /svtools | |
parent | 8f30e0ae6a8adc5a0973067fedebf878e52ac124 (diff) |
Remove unused header files
These were only referenced by Package_inc.mk...
Change-Id: Idc771477595b9d221f9f2003b293fdd1ba7e1588
Diffstat (limited to 'svtools')
-rw-r--r-- | svtools/Package_inc.mk | 1 | ||||
-rw-r--r-- | svtools/inc/svtools/fltdefs.hxx | 120 |
2 files changed, 0 insertions, 121 deletions
diff --git a/svtools/Package_inc.mk b/svtools/Package_inc.mk index 0dfc219c581a..cd33c9e772d6 100644 --- a/svtools/Package_inc.mk +++ b/svtools/Package_inc.mk @@ -72,7 +72,6 @@ $(eval $(call gb_Package_add_file,svtools_inc,inc/svtools/filter.hxx,svtools/fil $(eval $(call gb_Package_add_file,svtools_inc,inc/svtools/filechangedchecker.hxx,svtools/filechangedchecker.hxx)) $(eval $(call gb_Package_add_file,svtools_inc,inc/svtools/fixedhyper.hxx,svtools/fixedhyper.hxx)) $(eval $(call gb_Package_add_file,svtools_inc,inc/svtools/fltcall.hxx,svtools/fltcall.hxx)) -$(eval $(call gb_Package_add_file,svtools_inc,inc/svtools/fltdefs.hxx,svtools/fltdefs.hxx)) $(eval $(call gb_Package_add_file,svtools_inc,inc/svtools/fmtfield.hxx,svtools/fmtfield.hxx)) $(eval $(call gb_Package_add_file,svtools_inc,inc/svtools/fontsubstconfig.hxx,svtools/fontsubstconfig.hxx)) $(eval $(call gb_Package_add_file,svtools_inc,inc/svtools/framestatuslistener.hxx,svtools/framestatuslistener.hxx)) diff --git a/svtools/inc/svtools/fltdefs.hxx b/svtools/inc/svtools/fltdefs.hxx deleted file mode 100644 index ae75584e76e3..000000000000 --- a/svtools/inc/svtools/fltdefs.hxx +++ /dev/null @@ -1,120 +0,0 @@ -/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ -/* - * This file is part of the LibreOffice project. - * - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at http://mozilla.org/MPL/2.0/. - * - * This file incorporates work covered by the following license notice: - * - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed - * with this work for additional information regarding copyright - * ownership. The ASF licenses this file to you under the Apache - * License, Version 2.0 (the "License"); you may not use this file - * except in compliance with the License. You may obtain a copy of - * the License at http://www.apache.org/licenses/LICENSE-2.0 . - */ - -#include <tools/solar.h> -#include <vcl/bitmap.hxx> - -#include <string.h> - -#ifndef _FLTDEFS_HXX -#define _FLTDEFS_HXX - - -#if defined ( WNT ) - -#define RGBQUAD RGBQUADWIN - -typedef struct RGBQUAD -{ - sal_uInt8 rgbBlue; - sal_uInt8 rgbGreen; - sal_uInt8 rgbRed; - sal_uInt8 rgbReserved; - - RGBQUAD( const sal_uInt8 cRed = 0, const sal_uInt8 cGreen = 0, const sal_uInt8 cBlue = 0 ) : - rgbBlue ( cBlue ), - rgbGreen ( cGreen ), - rgbRed ( cRed ), - rgbReserved ( 0 ) {}; -} RGBQUAD; - - -typedef sal_uInt8* PDIBBYTE; -#define MEMCPY memcpy -#define MEMSET memset -#define GLOBALALLOC(nSize) ((PDIBBYTE)GlobalAlloc(GMEM_FIXED,(nSize))) -#define GLOBALFREE(pPointer) (GlobalFree((HGLOBAL)pPointer)) -#define GLOBALHANDLE(pPointer) ((HGLOBAL)(pPointer)) - -#else - -typedef sal_uInt8* PDIBBYTE; -#define MEMCPY memcpy -#define MEMSET memset -#define GLOBALALLOC(nSize) ((PDIBBYTE)new sal_uInt8[(nSize)]) -#define GLOBALFREE(pPointer) (delete[] (pPointer)) - -#endif - - -#if defined ( UNX ) -void ReadBitmap( SvStream& rIStream, Bitmap& rBmp, sal_uInt16 nDefaultHeight = 0, sal_uLong nOffBits = 0 ); -void ReplaceInfoHeader( SvStream& rStm, sal_uInt8* pBuffer ); - -typedef struct RGBQUAD -{ - sal_uInt8 rgbBlue; - sal_uInt8 rgbGreen; - sal_uInt8 rgbRed; - sal_uInt8 rgbReserved; - - RGBQUAD( const sal_uInt8 cRed = 0, const sal_uInt8 cGreen = 0, const sal_uInt8 cBlue = 0 ) : - rgbBlue ( cBlue ), - rgbGreen ( cGreen ), - rgbRed ( cRed ), - rgbReserved ( 0 ) {}; -} RGBQUAD; - -typedef struct BITMAPFILEHEADER -{ - sal_uInt16 bfType; - sal_uInt32 bfSize; - sal_uInt16 bfReserved1; - sal_uInt16 bfReserved2; - sal_uInt32 bfOffBits; -} BITMAPFILEHEADER; -typedef BITMAPFILEHEADER* PBITMAPFILEHEADER; - -typedef struct BITMAPINFOHEADER -{ - sal_uInt32 biSize; - sal_uInt32 biWidth; - sal_uInt32 biHeight; - sal_uInt16 biPlanes; - sal_uInt16 biBitCount; - sal_uInt32 biCompression; - sal_uInt32 biSizeImage; - sal_uInt32 biXPelsPerMeter; - sal_uInt32 biYPelsPerMeter; - sal_uInt32 biClrUsed; - sal_uInt32 biClrImportant; -} BITMAPINFOHEADER; -typedef BITMAPINFOHEADER* PBITMAPINFOHEADER; - -typedef struct BITMAPINFO -{ - BITMAPINFOHEADER bmiHeader; - RGBQUAD bmiColors[1]; -} BITMAPINFO; -typedef BITMAPINFO* PBITMAPINFO; - -#endif -#endif - -/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ |