Update of /cvsroot/pywin32/pywin32/com/win32comext/adsi
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv25968
Modified Files:
adsicon.py
Log Message:
Add a few missing constants.
Index: adsicon.py
===================================================================
RCS file: /cvsroot/pywin32/pywin32/com/win32comext/adsi/adsicon.py,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** adsicon.py 24 Sep 2004 07:28:02 -0000 1.1
--- adsicon.py 20 May 2005 23:23:31 -0000 1.2
***************
*** 246,247 ****
--- 246,278 ----
S_ADS_NOMORE_COLUMNS = _HRESULT_TYPEDEF_(0x00005013L)
E_ADS_INVALID_FILTER = _HRESULT_TYPEDEF_((-2147463148))
+
+ # ADS_DEREFENUM enum
+ ADS_DEREF_NEVER = 0
+ ADS_DEREF_SEARCHING = 1
+ ADS_DEREF_FINDING = 2
+ ADS_DEREF_ALWAYS = 3
+
+ # ADS_PREFERENCES_ENUM
+ ADSIPROP_ASYNCHRONOUS = 0
+ ADSIPROP_DEREF_ALIASES = 0x1
+ ADSIPROP_SIZE_LIMIT = 0x2
+ ADSIPROP_TIME_LIMIT = 0x3
+ ADSIPROP_ATTRIBTYPES_ONLY = 0x4
+ ADSIPROP_SEARCH_SCOPE = 0x5
+ ADSIPROP_TIMEOUT = 0x6
+ ADSIPROP_PAGESIZE = 0x7
+ ADSIPROP_PAGED_TIME_LIMIT = 0x8
+ ADSIPROP_CHASE_REFERRALS = 0x9
+ ADSIPROP_SORT_ON = 0xa
+ ADSIPROP_CACHE_RESULTS = 0xb
+ ADSIPROP_ADSIFLAG = 0xc
+
+ # ADSI_DIALECT_ENUM
+ ADSI_DIALECT_LDAP = 0
+ ADSI_DIALECT_SQL = 0x1
+
+ # ADS_CHASE_REFERRALS_ENUM
+ ADS_CHASE_REFERRALS_NEVER = 0
+ ADS_CHASE_REFERRALS_SUBORDINATE = 0x20
+ ADS_CHASE_REFERRALS_EXTERNAL = 0x40
+ ADS_CHASE_REFERRALS_ALWAYS = ADS_CHASE_REFERRALS_SUBORDINATE | ADS_CHASE_REFERRALS_EXTERNAL
|