mirror of
https://github.com/hrydgard/ppsspp.git
synced 2024-11-23 13:30:02 +00:00
11 lines
282 B
C
11 lines
282 B
C
|
#pragma once
|
||
|
|
||
|
#include <string>
|
||
|
|
||
|
// Generic function to get last error message.
|
||
|
// Call directly after the command or use the error num.
|
||
|
// This function might change the error code.
|
||
|
// Defined in Misc.cpp.
|
||
|
std::string GetLastErrorMsg();
|
||
|
std::string GetStringErrorMsg(int errCode);
|