Hi Zhangrong,
+static inline unsigned int strlenW( const WCHAR *str )
+{
+ const WCHAR *s = str;
+ while (*s) s++;
+ return s - str;
+}Is there some reason you can't just use lstrlenW? --Juan
Hi Zhangrong,
+static inline unsigned int strlenW( const WCHAR *str )
+{
+ const WCHAR *s = str;
+ while (*s) s++;
+ return s - str;
+}Is there some reason you can't just use lstrlenW? --Juan