windows-nt/Source/XPSP1/NT/inetsrv/iis/admin/adsi/adsiis/fsmacro.h
2020-09-26 16:20:57 +08:00

86 lines
3.3 KiB
C

//---------------------------------------------------------------------------
//
// Microsoft Windows
// Copyright (C) Microsoft Corporation, 1992 - 1995
//
// File: fsmacro.h
//
// Contents: Macros for adsi put/get methods
//
// History: 21-04-97 sophiac Created.
//
//----------------------------------------------------------------------------
#define PUT_PROPERTY_LONG(this, Property) \
RRETURN(put_LONG_Property( \
(IADs *)this, \
TEXT(#Property), \
l##Property \
))
#define GET_PROPERTY_LONG(this, Property) \
RRETURN(get_LONG_Property( \
(IADs *)this, \
TEXT(#Property), \
retval \
))
#define PUT_PROPERTY_BSTR(this, Property) \
RRETURN(put_BSTR_Property( \
(IADs *)this, \
TEXT(#Property), \
bstr##Property \
))
#define GET_PROPERTY_BSTR(this, Property) \
RRETURN(get_BSTR_Property( \
(IADs *)this, \
TEXT(#Property), \
retval \
))
#define PUT_PROPERTY_VARIANT_BOOL(this, Property) \
RRETURN(put_VARIANT_BOOL_Property( \
(IADs *)this, \
TEXT(#Property), \
f##Property\
))
#define GET_PROPERTY_VARIANT_BOOL(this, Property) \
RRETURN(get_VARIANT_BOOL_Property( \
(IADs *)this, \
TEXT(#Property), \
retval \
))
#define PUT_PROPERTY_DATE(this, Property) \
RRETURN(put_DATE_Property( \
(IADs *)this, \
TEXT(#Property), \
da##Property \
))
#define GET_PROPERTY_DATE(this, Property) \
RRETURN(get_DATE_Property( \
(IADs *)this, \
TEXT(#Property), \
retval \
))
#define PUT_PROPERTY_VARIANT(this, Property) \
RRETURN(put_VARIANT_Property( \
(IADs *)this, \
TEXT(#Property), \
v##Property \
))
#define GET_PROPERTY_VARIANT(this, Property) \
RRETURN(get_VARIANT_Property( \
(IADs *)this, \
TEXT(#Property), \
retval \
))