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.

30 lines
762 B

  1. //+-------------------------------------------------------------------------
  2. //
  3. // Microsoft Windows
  4. //
  5. // Copyright (C) Microsoft Corporation, 2000
  6. //
  7. // File: cpnamespc.h
  8. //
  9. //--------------------------------------------------------------------------
  10. #ifndef __CONTROLPANEL_NAMESPACE_H
  11. #define __CONTROLPANEL_NAMESPACE_H
  12. namespace CPL {
  13. //
  14. // Generates a new namespace object to represent the Control Panel
  15. // categorized namespace.
  16. //
  17. HRESULT CplNamespace_CreateInstance(IEnumIDList *penumIDs, REFIID riid, void **ppvOut);
  18. //
  19. // Retrieve the count of applets in a particular category.
  20. //
  21. HRESULT CplNamespace_GetCategoryAppletCount(ICplNamespace *pns, eCPCAT eCategory, int *pcApplets);
  22. } // namespace CPL
  23. #endif // __CONTROLPANEL_NAMESPACE_H