Leaked source code of windows server 2003
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.
 
 
 
 
 
 

85 lines
3.4 KiB

//---------------------------------------------------------------------------
//
// 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 \
))