Show PSM icons in backup manager.

This commit is contained in:
codestation
2013-12-19 17:41:54 -04:30
parent d6831fc6c6
commit 2b26fb239c
6 changed files with 1071 additions and 4 deletions

30
src/dds.h Normal file
View File

@@ -0,0 +1,30 @@
/*
* QCMA: Cross-platform content manager assistant for the PS Vita
*
* Copyright (C) 2013 Codestation
*
* 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 3 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, see <http://www.gnu.org/licenses/>.
*/
#ifndef KIMG_DDS_H
#define KIMG_DDS_H
#include <QImage>
#include <QString>
bool loadDDS(const QString &filename, QImage *image);
#endif