mirror of https://github.com/tongzx/nt5src
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
691 B
29 lines
691 B
//+---------------------------------------------------------------------------
|
|
//
|
|
// Microsoft Windows
|
|
// Copyright (C) Microsoft Corporation, 1999.
|
|
//
|
|
// File: O P E N F O L D . H
|
|
//
|
|
// Contents: Utility function for opening the UPnP device folder
|
|
//
|
|
// Notes:
|
|
//
|
|
// Author: jeffspr 12 Jan 1998
|
|
//
|
|
//----------------------------------------------------------------------------
|
|
|
|
#ifndef _OPENFOLD_H_
|
|
#define _OPENFOLD_H_
|
|
|
|
// Get an IShellFolder * given the folder pidl
|
|
//
|
|
HRESULT HrGetUPnPDeviceIShellFolder(
|
|
LPITEMIDLIST pidlFolder,
|
|
LPSHELLFOLDER * ppsf);
|
|
|
|
HRESULT HrOpenSpecialShellFolder(HWND hwnd, INT iStandardFolderID);
|
|
|
|
#endif // _OPENFOLD_H_
|
|
|
|
|