stub some missing functions
authorChristoph von Wittich <christoph_vw@reactos.org>
Sun, 1 Feb 2009 13:38:04 +0000 (13:38 +0000)
committerChristoph von Wittich <christoph_vw@reactos.org>
Sun, 1 Feb 2009 13:38:04 +0000 (13:38 +0000)
svn path=/trunk/; revision=39264

reactos/lib/sdk/crt/crt.rbuild
reactos/lib/sdk/crt/string/strtoi64.c [new file with mode: 0644]
reactos/lib/sdk/crt/string/wtoi64.c

index 08c2012..3604a30 100644 (file)
                <file>strspn.c</file>
                <file>strstr.c</file>
                <file>strtod.c</file>
+               <file>strtoi64.c</file>
                <file>strtok.c</file>
                <file>strtol.c</file>
                <file>strtoul.c</file>
diff --git a/reactos/lib/sdk/crt/string/strtoi64.c b/reactos/lib/sdk/crt/string/strtoi64.c
new file mode 100644 (file)
index 0000000..96260b6
--- /dev/null
@@ -0,0 +1,12 @@
+#include <precomp.h>
+
+
+__int64
+_strtoi64(const char *nptr, char **endptr, int base)
+{
+   TRACE("_strtoi64 is UNIMPLEMENTED\n");
+   return 0;
+}
+
+
+/* EOF */
index b729f49..cc49751 100644 (file)
@@ -45,4 +45,26 @@ _wtoi64 (const wchar_t *nptr)
        return value;
 }
 
+
+/*
+ * @unimplemented
+ */
+__int64
+_wcstoi64 (const wchar_t *nptr, wchar_t **endptr, int base)
+{
+   TRACE("_wcstoi64 is UNIMPLEMENTED\n");
+   return 0;
+}
+
+/*
+ * @unimplemented
+ */
+unsigned __int64
+_wcstoui64 (const wchar_t *nptr, wchar_t **endptr, int base)
+{
+   TRACE("_wcstoui64 is UNIMPLEMENTED\n");
+   return 0;
+}
+
+
 /* EOF */