all repos — mgba @ a11458105b41fbb5aa150331eb9d9a1fedc72a63

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#pragma once
 7
 8#include <mgba/core/core.h>
 9
10#include <QString>
11
12namespace QGBA {
13
14QString niceSizeFormat(size_t filesize);
15QString nicePlatformFormat(mPlatform platform);
16
17}