Author: cwittich
Date: Sun Feb 1 07:38:04 2009
New Revision: 39264
URL:
http://svn.reactos.org/svn/reactos?rev=39264&view=rev
Log:
stub some missing functions
Added:
trunk/reactos/lib/sdk/crt/string/strtoi64.c (with props)
Modified:
trunk/reactos/lib/sdk/crt/crt.rbuild
trunk/reactos/lib/sdk/crt/string/wtoi64.c
Modified: trunk/reactos/lib/sdk/crt/crt.rbuild
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/lib/sdk/crt/crt.rbuild?rev…
==============================================================================
--- trunk/reactos/lib/sdk/crt/crt.rbuild [iso-8859-1] (original)
+++ trunk/reactos/lib/sdk/crt/crt.rbuild [iso-8859-1] Sun Feb 1 07:38:04 2009
@@ -408,6 +408,7 @@
<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>
Added: trunk/reactos/lib/sdk/crt/string/strtoi64.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/lib/sdk/crt/string/strtoi6…
==============================================================================
--- trunk/reactos/lib/sdk/crt/string/strtoi64.c (added)
+++ trunk/reactos/lib/sdk/crt/string/strtoi64.c [iso-8859-1] Sun Feb 1 07:38:04 2009
@@ -1,0 +1,12 @@
+#include <precomp.h>
+
+
+__int64
+_strtoi64(const char *nptr, char **endptr, int base)
+{
+ TRACE("_strtoi64 is UNIMPLEMENTED\n");
+ return 0;
+}
+
+
+/* EOF */
Propchange: trunk/reactos/lib/sdk/crt/string/strtoi64.c
------------------------------------------------------------------------------
svn:eol-style = native
Modified: trunk/reactos/lib/sdk/crt/string/wtoi64.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/lib/sdk/crt/string/wtoi64.…
==============================================================================
--- trunk/reactos/lib/sdk/crt/string/wtoi64.c [iso-8859-1] (original)
+++ trunk/reactos/lib/sdk/crt/string/wtoi64.c [iso-8859-1] Sun Feb 1 07:38:04 2009
@@ -45,4 +45,26 @@
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 */