Changeset 2111 for trunk/src/kernel32/stubs.cpp
- Timestamp:
- Dec 18, 1999, 5:19:19 PM (26 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/kernel32/stubs.cpp
r2042 r2111 1 /* $Id: stubs.cpp,v 1.1 2 1999-12-09 11:00:40sandervl Exp $ */1 /* $Id: stubs.cpp,v 1.13 1999-12-18 16:19:19 sandervl Exp $ */ 2 2 3 3 /* … … 1860 1860 lpCurrencyStr, 1861 1861 cchCurrency)); 1862 1862 1863 if(lpValue && lpCurrencyStr) { 1864 lstrcpyA(lpCurrencyStr, lpValue); 1865 return lstrlenA(lpCurrencyStr); 1866 } 1863 1867 return (0); 1864 1868 } … … 1897 1901 lpCurrencyStr, 1898 1902 cchCurrency)); 1903 1904 if(lpValue && lpCurrencyStr) { 1905 lstrcpyW(lpCurrencyStr, lpValue); 1906 return lstrlenW(lpCurrencyStr); 1907 } 1899 1908 1900 1909 return (0);
Note:
See TracChangeset
for help on using the changeset viewer.