aboutsummaryrefslogtreecommitdiffstats
path: root/src/util/Error.hxx
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2014-07-30 21:58:37 +0200
committerMax Kellermann <max@duempel.org>2014-07-30 22:10:31 +0200
commitc8858f85d8366e36c588b1dcc7ef7eff40832dd0 (patch)
tree4a5a8bd89493537f3a7f92dfddac879f3f0bd01c /src/util/Error.hxx
parentd1bc46ffad08e070e24f775dd3e13201d97aeb5d (diff)
downloadmpd-c8858f85d8366e36c588b1dcc7ef7eff40832dd0.tar.gz
mpd-c8858f85d8366e36c588b1dcc7ef7eff40832dd0.tar.xz
mpd-c8858f85d8366e36c588b1dcc7ef7eff40832dd0.zip
util/Error: add method FormatLastError()
Diffstat (limited to '')
-rw-r--r--src/util/Error.hxx6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/util/Error.hxx b/src/util/Error.hxx
index 82f01105f..ab66ae5cb 100644
--- a/src/util/Error.hxx
+++ b/src/util/Error.hxx
@@ -168,6 +168,12 @@ public:
#ifdef WIN32
void SetLastError(DWORD _code, const char *prefix);
void SetLastError(const char *prefix);
+
+ gcc_printf(3,4)
+ void FormatLastError(DWORD code, const char *fmt, ...);
+
+ gcc_printf(2,3)
+ void FormatLastError(const char *fmt, ...);
#endif
};