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.

47 lines
1.2 KiB

  1. //////////////////////////////////////////////////////////////////////////////
  2. //
  3. // Copyright (c) 2000 Microsoft Corporation
  4. //
  5. // Module Name:
  6. // IPrivatePostCfgResource.h
  7. //
  8. // Description:
  9. // IPrivatePostCfgResource interface definition.
  10. //
  11. // Maintained By:
  12. // Geoffrey Pease (GPease) 15-JUN-2000
  13. //
  14. //////////////////////////////////////////////////////////////////////////////
  15. #pragma once
  16. class
  17. IPrivatePostCfgResource
  18. : public IUnknown
  19. {
  20. public:
  21. //////////////////////////////////////////////////////////////////////////
  22. //
  23. // PRIVATE
  24. // STDMETHOD
  25. // IPrivatePostCfgResource::SetEntry(
  26. // CResourceEntry * presentryIn
  27. // )
  28. //
  29. // Description:
  30. // Tells the resource service which entry it is to be modifying.
  31. //
  32. // Arguments:
  33. // presentryIn
  34. // The entry in which the resource service is going to modifying.
  35. //
  36. // Return Values:
  37. // S_OK
  38. // The call succeeded.
  39. //
  40. // other HRESULTs
  41. // The call failed.
  42. //
  43. //////////////////////////////////////////////////////////////////////////
  44. STDMETHOD( SetEntry )( CResourceEntry * presentryIn ) PURE;
  45. }; // class IPrivatePostCfgResource