windows-nt/Source/XPSP1/NT/ds/adsi/novellnw/cfsgi.cxx

45 lines
993 B
C++
Raw Normal View History

2020-09-26 03:20:57 -05:00
//---------------------------------------------------------------------------
//
// 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);
}