ppsspp/Common/SysError.h
2020-09-29 15:51:51 +02:00

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);