Platform SDK: Transaction Server |
ISharedPropertyGroupManager::get_Group, ISharedPropertyGroup::get_Property Methods Example
[This product will work only on Windows NT 4.0 versions and earlier. For Windows 2000 and later, see COM+ (Component Services).]
#include <mtx.h> #include <mtxspm.h> IObjectContext* pObjectContext = NULL; ISharedPropertyGroupManager* pPropGpMgr = NULL; ISharedPropertyGroup* pPropGp = NULL; ISharedProperty* pPropNextNum = NULL; BSTR stName, stNextNumber; VARIANT vNext; LONG lNextValue = 0L; HRESULT hr = S_OK; hr = GetObjectContext(&pObjectContext); // Get the SharedPropertyGroupManager, // SharedPropertyGroup, and SharedProperty. hr = pObjectContext->CreateInstance (CLSID_SharedPropertyGroupManager, IID_ISharedPropertyGroupManager, (void**)&pPropGpMgr); stName = SysAllocString(L"Counter"); hr = pPropGpMgr->get_Group(stName, &pPropGp); SysFreeString(stName); stNextNumber = SysAllocString(L"NextNum"); hr = pPropGp->get_Property (stNextNumber, &pPropNextNum); SysFreeString(stNextNumber); // Get the next number and increment the counter. VariantInit(&vNext); vNext.vt = VT_I4; hr = pPropNextNum->get_Value(&vNext); lNextValue = vNext.lVal++; hr = pPropNextNum->put_Value(vNext);