winreg.h: Add RRF_RT_ANY.

This commit is contained in:
Francois Gouget 2007-08-08 10:40:35 +02:00 committed by Alexandre Julliard
parent 5b375aec71
commit bb22543125
1 changed files with 1 additions and 0 deletions

View File

@ -77,6 +77,7 @@ typedef ACCESS_MASK REGSAM;
#define RRF_RT_REG_QWORD (1 << 6)
#define RRF_RT_DWORD (RRF_RT_REG_BINARY | RRF_RT_REG_DWORD)
#define RRF_RT_QWORD (RRF_RT_REG_BINARY | RRF_RT_REG_QWORD)
#define RRF_RT_ANY 0xffff
#define RRF_NOEXPAND (1 << 28)
#define RRF_ZEROONFAILURE (1 << 29)