EXCEPTION macro removed

fmt::throw_exception<> implemented
::narrow improved
Minor fixes
This commit is contained in:
Nekotekina 2016-08-08 19:01:06 +03:00
parent 46735d6b3d
commit a7e808b35b
198 changed files with 3025 additions and 2956 deletions

View file

@ -16,97 +16,97 @@ struct music2_t
s32 cellMusicGetSelectionContext()
{
throw EXCEPTION("");
fmt::throw_exception("Unimplemented" HERE);
}
s32 cellMusicSetSelectionContext2()
{
throw EXCEPTION("");
fmt::throw_exception("Unimplemented" HERE);
}
s32 cellMusicSetVolume2()
{
throw EXCEPTION("");
fmt::throw_exception("Unimplemented" HERE);
}
s32 cellMusicGetContentsId()
{
throw EXCEPTION("");
fmt::throw_exception("Unimplemented" HERE);
}
s32 cellMusicSetSelectionContext()
{
throw EXCEPTION("");
fmt::throw_exception("Unimplemented" HERE);
}
s32 cellMusicInitialize2SystemWorkload()
{
throw EXCEPTION("");
fmt::throw_exception("Unimplemented" HERE);
}
s32 cellMusicGetPlaybackStatus2()
{
throw EXCEPTION("");
fmt::throw_exception("Unimplemented" HERE);
}
s32 cellMusicGetContentsId2()
{
throw EXCEPTION("");
fmt::throw_exception("Unimplemented" HERE);
}
s32 cellMusicFinalize()
{
throw EXCEPTION("");
fmt::throw_exception("Unimplemented" HERE);
}
s32 cellMusicInitializeSystemWorkload()
{
throw EXCEPTION("");
fmt::throw_exception("Unimplemented" HERE);
}
s32 cellMusicInitialize()
{
throw EXCEPTION("");
fmt::throw_exception("Unimplemented" HERE);
}
s32 cellMusicFinalize2()
{
throw EXCEPTION("");
fmt::throw_exception("Unimplemented" HERE);
}
s32 cellMusicGetSelectionContext2()
{
throw EXCEPTION("");
fmt::throw_exception("Unimplemented" HERE);
}
s32 cellMusicGetVolume()
{
throw EXCEPTION("");
fmt::throw_exception("Unimplemented" HERE);
}
s32 cellMusicGetPlaybackStatus()
{
throw EXCEPTION("");
fmt::throw_exception("Unimplemented" HERE);
}
s32 cellMusicSetPlaybackCommand2()
{
throw EXCEPTION("");
fmt::throw_exception("Unimplemented" HERE);
}
s32 cellMusicSetPlaybackCommand()
{
throw EXCEPTION("");
fmt::throw_exception("Unimplemented" HERE);
}
s32 cellMusicSelectContents2()
{
throw EXCEPTION("");
fmt::throw_exception("Unimplemented" HERE);
}
s32 cellMusicSelectContents()
{
throw EXCEPTION("");
fmt::throw_exception("Unimplemented" HERE);
}
s32 cellMusicInitialize2(s32 mode, s32 spuPriority, vm::ptr<CellMusic2Callback> func, vm::ptr<void> userData)
@ -134,12 +134,12 @@ s32 cellMusicInitialize2(s32 mode, s32 spuPriority, vm::ptr<CellMusic2Callback>
s32 cellMusicSetVolume()
{
throw EXCEPTION("");
fmt::throw_exception("Unimplemented" HERE);
}
s32 cellMusicGetVolume2()
{
throw EXCEPTION("");
fmt::throw_exception("Unimplemented" HERE);
}