Changeset 7832 for trunk/src/kernel32/lang.cpp
- Timestamp:
- Feb 7, 2002, 5:34:54 PM (24 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/kernel32/lang.cpp
r7251 r7832 1 /* $Id: lang.cpp,v 1.3 8 2001-10-28 17:15:33 sandervl Exp $ */1 /* $Id: lang.cpp,v 1.39 2002-02-07 16:34:53 sandervl Exp $ */ 2 2 /* 3 3 * Win32 language API functions for OS/2 … … 182 182 if (wbuf) 183 183 { 184 if (*pLen > UniStrlen(lpUniStr))185 UniStrcpy(wbuf,lpUniStr);184 if (*pLen > lstrlenW(lpUniStr)) 185 lstrcpyW(wbuf,lpUniStr); 186 186 else 187 187 { … … 192 192 } 193 193 194 *pLen= UniStrlen(lpUniStr)+1; // + null terminator194 *pLen=lstrlenW(lpUniStr)+1; // + null terminator 195 195 196 196 return TRUE; 197 197 } 198 //replaced by Wine functions in ole2nls.c 199 #if 0 198 200 //****************************************************************************** 199 201 //****************************************************************************** … … 894 896 return (ret_len); 895 897 } 898 #endif 896 899 //****************************************************************************** 897 900 //******************************************************************************
Note:
See TracChangeset
for help on using the changeset viewer.