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.
24 lines
605 B
24 lines
605 B
//+-------------------------------------------------------------------------
|
|
//
|
|
// OLEDBSHL
|
|
// Copyright (C) Microsoft, 1995
|
|
//
|
|
// File: oledbshl.h
|
|
//
|
|
// Contents: External exports of functions and types, in C style
|
|
// for consumers like shell32.dll
|
|
//
|
|
// History: 6-26-95 Davepl Created
|
|
//
|
|
//--------------------------------------------------------------------------
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
HRESULT COFSFolder_CreateFromIDList(LPCITEMIDLIST pidl, REFIID riid, LPVOID * ppvOut);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|