Ignore:
Timestamp:
Apr 28, 2001, 3:33:49 PM (24 years ago)
Author:
sandervl
Message:

resync with latest wine

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 1
    4 #include <odin.h>
    5 #endif
    61#include <string.h>
    72#include <stdio.h>
     
    149#include "heap.h"
    1510
     11#include "shlobj.h"
     12#include "shlwapi.h"
    1613#include "shellapi.h"
    1714#include "shell32_main.h"
     
    3128 *  the pidl is for STRRET OFFSET
    3229 */
    33 HRESULT WINAPI StrRetToStrNA (LPVOID dest, DWORD len, LPSTRRET src, LPITEMIDLIST pidl)
     30HRESULT WINAPI StrRetToStrNA (LPVOID dest, DWORD len, LPSTRRET src, const ITEMIDLIST *pidl)
    3431{
    3532        return StrRetToBufA( src, pidl, dest, len );
    3633}
    3734
    38 HRESULT WINAPI StrRetToStrNW (LPVOID dest, DWORD len, LPSTRRET src, LPITEMIDLIST pidl)
     35HRESULT WINAPI StrRetToStrNW (LPVOID dest, DWORD len, LPSTRRET src, const ITEMIDLIST *pidl)
    3936{
    4037        return StrRetToBufW( src, pidl, dest, len );
    4138}
    4239
    43 HRESULT WINAPI StrRetToStrNAW (LPVOID dest, DWORD len, LPSTRRET src, LPITEMIDLIST pidl)
     40HRESULT WINAPI StrRetToStrNAW (LPVOID dest, DWORD len, LPSTRRET src, const ITEMIDLIST *pidl)
    4441{
    4542        if(SHELL_OsIsUnicode())
Note: See TracChangeset for help on using the changeset viewer.