Changeset 5618 for trunk/src/shell32/shellstring.c
- Timestamp:
- Apr 28, 2001, 3:33:49 PM (24 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/shell32/shellstring.c
r4121 r5618 1 /* $Id: shellstring.c,v 1.1 2000-08-30 13:52:56 sandervl Exp $ */2 #ifdef __WIN32OS2__3 #define ICOM_CINTERFACE 14 #include <odin.h>5 #endif6 1 #include <string.h> 7 2 #include <stdio.h> … … 14 9 #include "heap.h" 15 10 11 #include "shlobj.h" 12 #include "shlwapi.h" 16 13 #include "shellapi.h" 17 14 #include "shell32_main.h" … … 31 28 * the pidl is for STRRET OFFSET 32 29 */ 33 HRESULT WINAPI StrRetToStrNA (LPVOID dest, DWORD len, LPSTRRET src, LPITEMIDLISTpidl)30 HRESULT WINAPI StrRetToStrNA (LPVOID dest, DWORD len, LPSTRRET src, const ITEMIDLIST *pidl) 34 31 { 35 32 return StrRetToBufA( src, pidl, dest, len ); 36 33 } 37 34 38 HRESULT WINAPI StrRetToStrNW (LPVOID dest, DWORD len, LPSTRRET src, LPITEMIDLISTpidl)35 HRESULT WINAPI StrRetToStrNW (LPVOID dest, DWORD len, LPSTRRET src, const ITEMIDLIST *pidl) 39 36 { 40 37 return StrRetToBufW( src, pidl, dest, len ); 41 38 } 42 39 43 HRESULT WINAPI StrRetToStrNAW (LPVOID dest, DWORD len, LPSTRRET src, LPITEMIDLISTpidl)40 HRESULT WINAPI StrRetToStrNAW (LPVOID dest, DWORD len, LPSTRRET src, const ITEMIDLIST *pidl) 44 41 { 45 42 if(SHELL_OsIsUnicode())
Note:
See TracChangeset
for help on using the changeset viewer.