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.

37 lines
825 B

  1. //+-------------------------------------------------------------------------
  2. //
  3. // Microsoft Windows
  4. // Copyright (C) Microsoft Corporation, 1997.
  5. //
  6. // File: qryreg.hxx
  7. //
  8. //--------------------------------------------------------------------------
  9. #pragma once
  10. typedef struct tagREGENTRIES
  11. {
  12. BOOL fExpand;
  13. WCHAR * strRegKey;
  14. WCHAR * strValueName;
  15. WCHAR * strValue;
  16. } REGENTRIES;
  17. #define MAX_REGENTRY_LEN 300
  18. HRESULT UnRegisterServer
  19. (
  20. const HKEY hKey,
  21. const ULONG cEntries,
  22. const REGENTRIES rgEntries[]
  23. );
  24. HRESULT RegisterServer
  25. (
  26. const HKEY hKey,
  27. const ULONG cEntries,
  28. const REGENTRIES rgEntries[]
  29. );
  30. IClassFactory * GetSimpleCommandCreatorCF();