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.

44 lines
993 B

  1. //---------------------------------------------------------------------------
  2. //
  3. // Microsoft Windows
  4. // Copyright (C) Microsoft Corporation, 1995
  5. //
  6. // File: cfsvgeni.cxx
  7. //
  8. // Contents:
  9. //
  10. // History: April 19, 1996 t-ptam (Patrick Tam) Created.
  11. //
  12. //----------------------------------------------------------------------------
  13. #include "nwcompat.hxx"
  14. #pragma hdrstop
  15. //
  16. // Properties Get & Set.
  17. //
  18. STDMETHODIMP
  19. CNWCOMPATFileService::get_Description(THIS_ BSTR FAR* retval)
  20. {
  21. GET_PROPERTY_BSTR((IADsFileService *)this, Description);
  22. }
  23. STDMETHODIMP
  24. CNWCOMPATFileService::put_Description(THIS_ BSTR bstrDescription)
  25. {
  26. PUT_PROPERTY_BSTR((IADsFileService *)this, Description);
  27. }
  28. STDMETHODIMP
  29. CNWCOMPATFileService::get_MaxUserCount(THIS_ long FAR* retval)
  30. {
  31. GET_PROPERTY_LONG((IADsFileService *)this, MaxUserCount);
  32. }
  33. STDMETHODIMP
  34. CNWCOMPATFileService::put_MaxUserCount(THIS_ long lMaxUserCount)
  35. {
  36. PUT_PROPERTY_LONG((IADsFileService *)this, MaxUserCount);
  37. }