| 87 | const char* LastSystemErrorText(int code); |
| 88 | |
| 89 | inline const char* LastSystemErrorText() { |
| 90 | return LastSystemErrorText(LastSystemError()); |
| 91 | } |
| 92 | |
| 93 | inline void LastSystemErrorText(char* str, size_t size) { |
| 94 | LastSystemErrorText(str, size, LastSystemError()); |