source: trunk/include/win/winternl.h@ 21314

Last change on this file since 21314 was 21314, checked in by vladest, 16 years ago

updating includes according to Flash10 support

File size: 440 bytes
Line 
1#ifndef __WINE_WINTERNL_H__
2#define __WINE_WINTERNL_H__
3
4#include <ntddk.h>
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
17
18#endif /* __WINE_WINTERNL_H__ */
Note: See TracBrowser for help on using the repository browser.