Changeset 21512 for trunk/src/shell32/shlfolder.c
- Timestamp:
- Dec 6, 2010, 5:24:51 PM (15 years ago)
- File:
-
- 1 edited
-
trunk/src/shell32/shlfolder.c (modified) (9 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/shell32/shlfolder.c
r10185 r21512 1213 1213 return E_OUTOFMEMORY; 1214 1214 } 1215 strRet->uType = STRRET_CSTR A;1215 strRet->uType = STRRET_CSTR; 1216 1216 lstrcpynA(strRet->u.cStr, szPath, MAX_PATH); 1217 1217 … … 1356 1356 psd->fmt = GenericSFHeader[iColumn].fmt; 1357 1357 psd->cxChar = GenericSFHeader[iColumn].cxChar; 1358 psd->str.uType = STRRET_CSTR A;1358 psd->str.uType = STRRET_CSTR; 1359 1359 LoadStringA(shell32_hInstance, GenericSFHeader[iColumn].colnameid, psd->str.u.cStr, MAX_PATH); 1360 1360 return S_OK; … … 1382 1382 } 1383 1383 hr = S_OK; 1384 psd->str.uType = STRRET_CSTR A;1384 psd->str.uType = STRRET_CSTR; 1385 1385 } 1386 1386 … … 2020 2020 return E_OUTOFMEMORY; 2021 2021 } 2022 strRet->uType = STRRET_CSTR A;2022 strRet->uType = STRRET_CSTR; 2023 2023 lstrcpynA(strRet->u.cStr, szPath, MAX_PATH); 2024 2024 … … 2102 2102 psd->fmt = DesktopSFHeader[iColumn].fmt; 2103 2103 psd->cxChar = DesktopSFHeader[iColumn].cxChar; 2104 psd->str.uType = STRRET_CSTR A;2104 psd->str.uType = STRRET_CSTR; 2105 2105 LoadStringA(shell32_hInstance, DesktopSFHeader[iColumn].colnameid, psd->str.u.cStr, MAX_PATH); 2106 2106 return S_OK; … … 2128 2128 } 2129 2129 hr = S_OK; 2130 psd->str.uType = STRRET_CSTR A;2130 psd->str.uType = STRRET_CSTR; 2131 2131 } 2132 2132 … … 2501 2501 return E_OUTOFMEMORY; 2502 2502 } 2503 strRet->uType = STRRET_CSTR A;2503 strRet->uType = STRRET_CSTR; 2504 2504 lstrcpynA(strRet->u.cStr, szPath, MAX_PATH); 2505 2505 … … 2585 2585 psd->fmt = MyComputerSFHeader[iColumn].fmt; 2586 2586 psd->cxChar = MyComputerSFHeader[iColumn].cxChar; 2587 psd->str.uType = STRRET_CSTR A;2587 psd->str.uType = STRRET_CSTR; 2588 2588 LoadStringA(shell32_hInstance, MyComputerSFHeader[iColumn].colnameid, psd->str.u.cStr, MAX_PATH); 2589 2589 return S_OK; … … 2595 2595 2596 2596 psd->str.u.cStr[0] = 0x00; 2597 psd->str.uType = STRRET_CSTR A;2597 psd->str.uType = STRRET_CSTR; 2598 2598 switch(iColumn) 2599 2599 {
Note:
See TracChangeset
for help on using the changeset viewer.
