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
1.0 KiB
44 lines
1.0 KiB
//---------------------------------------------------------------------------
|
|
//
|
|
// Microsoft Windows
|
|
// Copyright (C) Microsoft Corporation, 1995
|
|
//
|
|
// File: cfsvgeni.cxx
|
|
//
|
|
// Contents:
|
|
//
|
|
// History: April 19, 1996 t-ptam (Patrick Tam) Created.
|
|
//
|
|
//----------------------------------------------------------------------------
|
|
#include "nwcompat.hxx"
|
|
#pragma hdrstop
|
|
|
|
//
|
|
// Properties Get & Set.
|
|
//
|
|
|
|
STDMETHODIMP
|
|
CNWCOMPATFileService::get_Description(THIS_ BSTR FAR* retval)
|
|
{
|
|
GET_PROPERTY_BSTR((IADsFileService *)this, Description);
|
|
}
|
|
|
|
STDMETHODIMP
|
|
CNWCOMPATFileService::put_Description(THIS_ BSTR bstrDescription)
|
|
{
|
|
PUT_PROPERTY_BSTR((IADsFileService *)this, Description);
|
|
}
|
|
|
|
STDMETHODIMP
|
|
CNWCOMPATFileService::get_MaxUserCount(THIS_ long FAR* retval)
|
|
{
|
|
GET_PROPERTY_LONG((IADsFileService *)this, MaxUserCount);
|
|
}
|
|
|
|
STDMETHODIMP
|
|
CNWCOMPATFileService::put_MaxUserCount(THIS_ long lMaxUserCount)
|
|
{
|
|
PUT_PROPERTY_LONG((IADsFileService *)this, MaxUserCount);
|
|
}
|
|
|
|
|