Changeset 21314 for trunk/include/win/winternl.h
- Timestamp:
- Jul 2, 2009, 12:20:20 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/win/winternl.h
r9399 r21314 4 4 #include <ntddk.h> 5 5 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 6 17 7 18 #endif /* __WINE_WINTERNL_H__ */
Note:
See TracChangeset
for help on using the changeset viewer.