mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-01-11 16:49:12 +01:00
15 lines
291 B
C
15 lines
291 B
C
|
// Copyright 2014 Dolphin Emulator Project
|
||
|
// Licensed under GPLv2
|
||
|
// Refer to the license.txt file included.
|
||
|
|
||
|
#pragma once
|
||
|
|
||
|
#include <QString>
|
||
|
|
||
|
#include "Common/CommonTypes.h"
|
||
|
|
||
|
// Shorter version of QStringLiteral(str)
|
||
|
#define SL(str) QStringLiteral(str)
|
||
|
|
||
|
QString NiceSizeFormat(s64 size);
|