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.
|
|
//---------------------------------------------------------------------------
//
// 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); }
|