Files
ppsspp/Common/SysError.h
T
2026-05-14 01:59:25 +03:00

10 lines
258 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.
std::string GetLastErrorMsg();
std::string GetStringErrorMsg(int errCode);