Ignore:
Timestamp:
Jul 2, 2009, 12:20:20 PM (16 years ago)
Author:
vladest
Message:

updating includes according to Flash10 support

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/include/win/winreg.h

    r9973 r21314  
    7373#define KEY_NOTIFY              0x00000010
    7474#define KEY_CREATE_LINK         0x00000020
     75
     76/*
     77 * RegGetValue() restrictions
     78 */
     79
     80#define RRF_RT_REG_NONE         (1 << 0)
     81#define RRF_RT_REG_SZ           (1 << 1)
     82#define RRF_RT_REG_EXPAND_SZ    (1 << 2)
     83#define RRF_RT_REG_BINARY       (1 << 3)
     84#define RRF_RT_REG_DWORD        (1 << 4)
     85#define RRF_RT_REG_MULTI_SZ     (1 << 5)
     86#define RRF_RT_REG_QWORD        (1 << 6)
     87#define RRF_RT_DWORD            (RRF_RT_REG_BINARY | RRF_RT_REG_DWORD)
     88#define RRF_RT_QWORD            (RRF_RT_REG_BINARY | RRF_RT_REG_QWORD)
     89#define RRF_RT_ANY              0xffff
     90#define RRF_NOEXPAND            (1 << 28)
     91#define RRF_ZEROONFAILURE       (1 << 29)
    7592
    7693#define KEY_READ                (STANDARD_RIGHTS_READ|  \
     
    205222#define     RegQueryMultipleValues WINELIB_NAME_AW(RegQueryMultipleValues)
    206223
     224typedef LONG LSTATUS;
     225
    207226#endif  /* __WINE_WINREG_H */
Note: See TracChangeset for help on using the changeset viewer.