mirror of
https://github.com/hrydgard/ppsspp.git
synced 2024-11-22 21:09:52 +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);
|