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.
32 lines
645 B
32 lines
645 B
//+-------------------------------------------------------------------------
|
|
//
|
|
// Microsoft Windows
|
|
//
|
|
// Copyright (C) Microsoft Corporation, 1997 - 1999
|
|
//
|
|
// File: idlhelp.h
|
|
//
|
|
//--------------------------------------------------------------------------
|
|
|
|
#ifndef _INC_CSCUI_IDLHELP_H
|
|
#define _INC_CSCUI_IDLHELP_H
|
|
|
|
HRESULT
|
|
BindToObject(
|
|
IShellFolder *psf,
|
|
REFIID riid,
|
|
LPCITEMIDLIST pidl,
|
|
void **ppvOut);
|
|
|
|
|
|
HRESULT
|
|
BindToIDListParent(
|
|
LPCITEMIDLIST pidl,
|
|
REFIID riid,
|
|
void **ppv,
|
|
LPCITEMIDLIST *ppidlLast);
|
|
|
|
|
|
HRESULT IsOfflineFilesFolderID(LPCITEMIDLIST pidl);
|
|
|
|
#endif // _INC_CSCUI_IDLHELP_H
|