Ignore:
Timestamp:
Jul 4, 2009, 12:01:32 AM (16 years ago)
Author:
ydario
Message:

advapi32 and crypt32 updates.

File:
1 edited

Legend:

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

    r21319 r21327  
    24802480#define FILE_512_BYTE_ALIGNMENT         0x000001ff
    24812481
     2482#define MAILSLOT_NO_MESSAGE             ((DWORD)-1)
     2483#define MAILSLOT_WAIT_FOREVER           ((DWORD)-1)
     2484
     2485#define REG_NONE                0       /* no type */
     2486#define REG_SZ                  1       /* string type (ASCII) */
     2487#define REG_EXPAND_SZ           2       /* string, includes %ENVVAR% (expanded by caller) (ASCII) */
     2488#define REG_BINARY              3       /* binary format, callerspecific */
     2489/* YES, REG_DWORD == REG_DWORD_LITTLE_ENDIAN */
     2490#define REG_DWORD               4       /* DWORD in little endian format */
     2491#define REG_DWORD_LITTLE_ENDIAN 4       /* DWORD in little endian format */
     2492#define REG_DWORD_BIG_ENDIAN    5       /* DWORD in big endian format  */
     2493#define REG_LINK                6       /* symbolic link (UNICODE) */
     2494#define REG_MULTI_SZ            7       /* multiple strings, delimited by \0, terminated by \0\0 (ASCII) */
     2495#define REG_RESOURCE_LIST       8       /* resource list? huh? */
     2496#define REG_FULL_RESOURCE_DESCRIPTOR    9       /* full resource descriptor? huh? */
     2497#define REG_RESOURCE_REQUIREMENTS_LIST  10
     2498#define REG_QWORD               11      /* QWORD in little endian format */
     2499#define REG_QWORD_LITTLE_ENDIAN 11      /* QWORD in little endian format */
     2500
    24822501/* Registry security values */
    24832502#define OWNER_SECURITY_INFORMATION  0x00000001
     
    27412760#define REG_QWORD               11      /* QWORD in little endian format */
    27422761
     2762#define DECLSPEC_NORETURN
     2763
    27432764#endif
Note: See TracChangeset for help on using the changeset viewer.