2014-10-18 15:07:17 +00:00
|
|
|
// Copyright 2014 Dolphin Emulator Project
|
|
|
|
// Licensed under GPLv2
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <QString>
|
|
|
|
|
|
|
|
#include "Common/CommonTypes.h"
|
|
|
|
|
2014-10-25 13:21:05 +00:00
|
|
|
// Use this to encapsulate ASCII string literals
|
2014-10-18 15:07:17 +00:00
|
|
|
#define SL(str) QStringLiteral(str)
|
|
|
|
|
2014-10-25 13:21:05 +00:00
|
|
|
// Use this to encapsulate string constants and functions that
|
|
|
|
// return "char*"s
|
|
|
|
#define SC(str) QString::fromLatin1(str)
|
|
|
|
|
2014-10-18 15:07:17 +00:00
|
|
|
QString NiceSizeFormat(s64 size);
|