Update of /cvsroot/pywin32/pywin32/win32/Lib
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv26723/win32/Lib
Modified Files:
winnt.py
Log Message:
Add some extra constants for registry functions
Index: winnt.py
===================================================================
RCS file: /cvsroot/pywin32/pywin32/win32/Lib/winnt.py,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** winnt.py 14 Nov 2005 07:28:10 -0000 1.3
--- winnt.py 30 Nov 2006 05:24:56 -0000 1.4
***************
*** 963,971 ****
REG_OPTION_BACKUP_RESTORE |\
REG_OPTION_OPEN_LINK)
! REG_CREATED_NEW_KEY = (1)
! REG_OPENED_EXISTING_KEY = (2)
! REG_WHOLE_HIVE_VOLATILE = (1)
! REG_REFRESH_HIVE = (2)
! REG_NO_LAZY_FLUSH = (4)
REG_NOTIFY_CHANGE_NAME = (1)
REG_NOTIFY_CHANGE_ATTRIBUTES = (2)
--- 963,982 ----
REG_OPTION_BACKUP_RESTORE |\
REG_OPTION_OPEN_LINK)
!
! ## dispositions returned from RegCreateKeyEx
! REG_CREATED_NEW_KEY = 1
! REG_OPENED_EXISTING_KEY = 2
!
! ## flags used with RegSaveKeyEx
! REG_STANDARD_FORMAT = 1
! REG_LATEST_FORMAT = 2
! REG_NO_COMPRESSION = 4
!
! ## flags used with RegRestoreKey
! REG_WHOLE_HIVE_VOLATILE = 1
! REG_REFRESH_HIVE = 2
! REG_NO_LAZY_FLUSH = 4
! REG_FORCE_RESTORE = 8
!
REG_NOTIFY_CHANGE_NAME = (1)
REG_NOTIFY_CHANGE_ATTRIBUTES = (2)
|