kde-workspace/kioslave/thumbnail/icoutils.h
Ivailo Monev dcc3b987b4 kioslave: remove unused IcoUtils::loadIcoImageFromExe() function argument
Signed-off-by: Ivailo Monev <xakepa10@gmail.com>
2022-10-09 00:32:49 +03:00

32 lines
1.2 KiB
C++

/*
icoutils.h - Extract Microsoft Window icons and images using icoutils package
Copyright (c) 2009-2010 by Pali Rohár <pali.rohar@gmail.com>
Copyright (c) 2013 by Andrius da Costa Ribas <andriusmao@gmail.com>
*************************************************************************
* *
* This library 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. *
* *
*************************************************************************
*/
#ifndef ICO_UTILS_H
#define ICO_UTILS_H
#include <QString>
#include <QImage>
namespace IcoUtils
{
bool loadIcoImageFromExe(const QString &inputPath, QImage &image, int needWidth, int needHeigh);
bool loadIcoImage(const QString &inputFileName, QImage &image, int needWidth, int needHeight);
}
#endif //ICO_UTILS_H