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/winternl.h

    r9399 r21314  
    44#include <ntddk.h>
    55
     6#define InitializeObjectAttributes(p,n,a,r,s) \
     7    do { \
     8        (p)->Length = sizeof(OBJECT_ATTRIBUTES); \
     9        (p)->RootDirectory = r; \
     10        (p)->Attributes = a; \
     11        (p)->ObjectName = n; \
     12        (p)->SecurityDescriptor = s; \
     13        (p)->SecurityQualityOfService = NULL; \
     14    } while (0)
     15
     16
    617
    718#endif /* __WINE_WINTERNL_H__ */
Note: See TracChangeset for help on using the changeset viewer.