reactos/include/rosrtl
diff -N resstr.h
--- /dev/null 1 Jan 1970 00:00:00 -0000
+++ resstr.h 10 Aug 2004 11:54:43 -0000 1.1
@@ -0,0 +1,43 @@
+/* $Id: resstr.h,v 1.1 2004/08/10 11:54:43 weiden Exp $
+ */
+
+#ifndef ROSRTL_RESSTR_H__
+#define ROSRTL_RESSTR_H__
+
+#ifdef __cplusplus
+extern "C"
+{
+#endif
+
+int
+RosLenOfStrResource(HINSTANCE hInst, UINT uID);
+int
+RosAllocAndLoadStringA(LPSTR *lpTarget, HINSTANCE hInst, UINT uID);
+int
+RosAllocAndLoadStringW(LPWSTR *lpTarget, HINSTANCE hInst, UINT uID);
+DWORD
+RosFormatStrA(LPSTR *lpTarget, LPSTR lpFormat, ...);
+DWORD
+RosFormatStrW(LPWSTR *lpTarget, LPWSTR lpFormat, ...);
+DWORD
+RosLoadAndFormatStrA(HINSTANCE hInst, UINT uID, LPSTR *lpTarget, ...);
+DWORD
+RosLoadAndFormatStrW(HINSTANCE hInst, UINT uID, LPWSTR *lpTarget, ...);
+
+#ifdef UNICODE
+# define RosFmtString RosFmtStringW
+# define RosAllocAndLoadString RosAllocAndLoadStringW
+# define RosLoadAndFormatStr RosLoadAndFormatStrW
+#else
+# define RosFmtString RosFmtStringA
+# define RosAllocAndLoadString RosAllocAndLoadStringA
+# define RosLoadAndFormatStr RosLoadAndFormatStrA
+#endif
+
+#ifdef __cplusplus
+}
+#endif
+
+#endif
+
+/* EOF */
reactos/include/rosrtl
diff -u -r1.3 -r1.4
--- string.h 10 Aug 2004 10:57:54 -0000 1.3
+++ string.h 10 Aug 2004 11:54:43 -0000 1.4
@@ -1,4 +1,4 @@
-/* $Id: string.h,v 1.3 2004/08/10 10:57:54 weiden Exp $
+/* $Id: string.h,v 1.4 2004/08/10 11:54:43 weiden Exp $
*/
#ifndef ROSRTL_STRING_H__
@@ -46,31 +46,6 @@
PUNICODE_STRING Second,
BOOL Deallocate );
-int
-RosLenOfStrResource(HINSTANCE hInst, UINT uID);
-int
-RosAllocAndLoadStringA(LPSTR *lpTarget, HINSTANCE hInst, UINT uID);
-int
-RosAllocAndLoadStringW(LPWSTR *lpTarget, HINSTANCE hInst, UINT uID);
-DWORD
-RosFormatStrA(LPSTR *lpTarget, LPSTR lpFormat, ...);
-DWORD
-RosFormatStrW(LPWSTR *lpTarget, LPWSTR lpFormat, ...);
-DWORD
-RosLoadAndFormatStrA(HINSTANCE hInst, UINT uID, LPSTR *lpTarget, ...);
-DWORD
-RosLoadAndFormatStrW(HINSTANCE hInst, UINT uID, LPWSTR *lpTarget, ...);
-
-#ifdef UNICODE
-# define RosFmtString RosFmtStringW
-# define RosAllocAndLoadString RosAllocAndLoadStringW
-# define RosLoadAndFormatStr RosLoadAndFormatStrW
-#else
-# define RosFmtString RosFmtStringA
-# define RosAllocAndLoadString RosAllocAndLoadStringA
-# define RosLoadAndFormatStr RosLoadAndFormatStrA
-#endif
-
#ifdef __cplusplus
}
#endif