summaryrefslogtreecommitdiff
path: root/include/util/win32
diff options
context:
space:
mode:
Diffstat (limited to 'include/util/win32')
-rwxr-xr-xinclude/util/win32/errormsg.hpp10
-rwxr-xr-xinclude/util/win32/stringutils.hpp10
2 files changed, 20 insertions, 0 deletions
diff --git a/include/util/win32/errormsg.hpp b/include/util/win32/errormsg.hpp
new file mode 100755
index 0000000..f1ceb93
--- /dev/null
+++ b/include/util/win32/errormsg.hpp
@@ -0,0 +1,10 @@
+#ifndef __ERRORMSG_H
+#define __ERRORMSG_H
+
+#include <string>
+
+#include "CrawlerExportable.hpp"
+
+CRAWLER_DLL_VISIBLE std::string getLastError( );
+
+#endif
diff --git a/include/util/win32/stringutils.hpp b/include/util/win32/stringutils.hpp
new file mode 100755
index 0000000..b0404cd
--- /dev/null
+++ b/include/util/win32/stringutils.hpp
@@ -0,0 +1,10 @@
+#ifndef __STRINGUTILS_H
+#define __STRINGUTILS_H
+
+#include <string>
+
+#include "CrawlerExportable.hpp"
+
+CRAWLER_DLL_VISIBLE std::wstring s2ws( const std::string &s );
+
+#endif