windows-nt/Source/XPSP1/NT/shell/shell32/unicpp/propbag.cpp
2020-09-26 16:20:57 +08:00

15 lines
262 B
C++

#include "stdafx.h"
#include "stddef.h"
#pragma hdrstop
//
// Exported function for creating a IPropertyBag (or variant of) object.
//
STDAPI SHCreatePropertyBag(REFIID riid, void **ppv)
{
return SHCreatePropertyBagOnMemory(STGM_READWRITE, riid, ppv);
}