Source code of Windows XP (NT5)
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.

18 lines
480 B

  1. // Copyright (c) 2000 Microsoft Corporation. All rights reserved.
  2. //
  3. // Helpers for implementation of ISpecifyPropertyPages and IPersistStream
  4. //
  5. #include "PropertyHelp.h"
  6. HRESULT PropertyHelp::GetPages(const CLSID &rclsidPropertyPage, CAUUID * pPages)
  7. {
  8. pPages->cElems = 1;
  9. pPages->pElems = static_cast<GUID *>(CoTaskMemAlloc(sizeof(GUID)));
  10. if (pPages->pElems == NULL)
  11. return E_OUTOFMEMORY;
  12. *(pPages->pElems) = rclsidPropertyPage;
  13. return S_OK;
  14. }