all repos — mgba @ ec1fc632b23749add411a2d9a9a4a32bd957a99c

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