Files
ppsspp/Common/SysError.h
2026-05-16 10:40:08 +02: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);