all repos — mgba @ 1733c6456125b0a49c7f7fcac28ffe4328ce4701

mGBA Game Boy Advance Emulator

src/platform/qt/utils.h (view raw)

 1/* Copyright (c) 2013-2017 Jeffrey Pfau
 2 *
 3 * This Source Code Form is subject to the terms of the Mozilla Public
 4 * License, v. 2.0. If a copy of the MPL was not distributed with this
 5 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
 6#ifndef QGBA_UTILS_H
 7#define QGBA_UTILS_H
 8
 9#include <mgba/core/core.h>
10
11#include <QString>
12
13namespace QGBA {
14
15QString niceSizeFormat(size_t filesize);
16QString nicePlatformFormat(mPlatform platform);
17
18}
19
20#endif