summaryrefslogtreecommitdiff
path: root/shared/systemFunctions.h
diff options
context:
space:
mode:
authorDaniel Wilhelm <daniel@wili.li>2014-04-18 17:05:53 +0200
committerDaniel Wilhelm <daniel@wili.li>2014-04-18 17:05:53 +0200
commit618dfb51d93898632830f1b87443d3f748780871 (patch)
treebac520a2e261154f8d35b0cb8aa345f5ab373811 /shared/systemFunctions.h
parent3.4 (diff)
downloadFreeFileSync-618dfb51d93898632830f1b87443d3f748780871.tar.gz
FreeFileSync-618dfb51d93898632830f1b87443d3f748780871.tar.bz2
FreeFileSync-618dfb51d93898632830f1b87443d3f748780871.zip
3.5
Diffstat (limited to 'shared/systemFunctions.h')
-rw-r--r--shared/systemFunctions.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/shared/systemFunctions.h b/shared/systemFunctions.h
index 0adec62a..d197ceb6 100644
--- a/shared/systemFunctions.h
+++ b/shared/systemFunctions.h
@@ -12,11 +12,11 @@
namespace FreeFileSync
{
-
+//evaluate GetLastError()/errno and assemble specific error message
#ifdef FFS_WIN
-wxString getLastErrorFormatted(unsigned long lastError = 0); //try to get additional Windows error information
+wxString getLastErrorFormatted(unsigned long lastError = 0);
#elif defined FFS_LINUX
-wxString getLastErrorFormatted(int lastError = 0); //try to get additional Linux error information
+wxString getLastErrorFormatted(int lastError = 0);
#endif
}
bgstack15