wtypes.idl: Add size attribute to a void pointer.

This commit is contained in:
Mike McCormack 2006-04-13 20:07:29 +09:00 committed by Alexandre Julliard
parent 1d453ab551
commit 54d3060a2d

View file

@ -135,7 +135,7 @@ typedef struct _SECURITY_DESCRIPTOR {
typedef struct _SECURITY_ATTRIBUTES
{
DWORD nLength;
LPVOID lpSecurityDescriptor;
[size_is(nLength)] LPVOID lpSecurityDescriptor;
BOOL bInheritHandle;
} SECURITY_ATTRIBUTES, *PSECURITY_ATTRIBUTES, *LPSECURITY_ATTRIBUTES;