Leaked source code of windows server 2003
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.

38 lines
972 B

  1. ///////////////////////////////////////////////////////////////////////////
  2. //
  3. // Copyright(C) 1998-1999 Microsoft Corporation all rights reserved.
  4. //
  5. // Module: getvalue.h
  6. //
  7. // Project: Chameleon
  8. //
  9. // Description: Get/Set a property bag value
  10. //
  11. // Author: TLP
  12. //
  13. // When Who What
  14. // ---- --- ----
  15. // 12/3/98 TLP Original version
  16. //
  17. ///////////////////////////////////////////////////////////////////////////
  18. #ifndef __INC_GETSET_OBJECT_VALUE_H_
  19. #define __INC_SETSET_OBJECT_VALUE_H_
  20. #include "stdafx.h"
  21. bool
  22. GetObjectValue(
  23. /*[in]*/ LPCWSTR pszObjectPath,
  24. /*[in]*/ LPCWSTR pszValueName,
  25. /*[in]*/ VARIANT* pValue,
  26. /*[in]*/ UINT uExpectedType
  27. );
  28. bool
  29. SetObjectValue(
  30. /*[in]*/ LPCWSTR pszObjectPath,
  31. /*[in]*/ LPCWSTR pszValueName,
  32. /*[in]*/ VARIANT* pValue
  33. );
  34. #endif // __INC_SETSET_OBJECT_VALUE_H_