Ignore:
Timestamp:
Aug 24, 2000, 11:35:07 AM (25 years ago)
Author:
sandervl
Message:

update

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/shell32/pidl.cpp

    r4032 r4082  
    1 /* $Id: pidl.cpp,v 1.9 2000-08-18 02:01:17 phaller Exp $ */
     1/* $Id: pidl.cpp,v 1.10 2000-08-24 09:35:06 sandervl Exp $ */
    22
    33/*
     
    19791979        return dst;
    19801980}
     1981
     1982/*************************************************************************
     1983 * SHGetFolderLocation [SHELL32]
     1984 *
     1985 * NOTES
     1986 *  the pidl can be a simple one. since we cant get the path out of the pidl
     1987 *  we have to take all data from the pidl
     1988 */
     1989HRESULT WINAPI SHGetFolderLocation(
     1990        HWND hwnd,
     1991        int csidl,
     1992        HANDLE hToken,
     1993        DWORD dwFlags,
     1994        LPITEMIDLIST *ppidl)
     1995{
     1996        FIXME("0x%04x 0x%08x 0x%08x 0x%08lx %p\n",
     1997         hwnd, csidl, hToken, dwFlags, ppidl);
     1998        return SHGetSpecialFolderLocation(hwnd, csidl, ppidl);
     1999}
Note: See TracChangeset for help on using the changeset viewer.