Commit b7c6280e authored by Alexandre Julliard's avatar Alexandre Julliard

Converted urlmon.h to IDL.

parent 1843cd35
......@@ -12,6 +12,7 @@ IDL_SRCS = \
servprov.idl \
strmif.idl \
unknwn.idl \
urlmon.idl \
wtypes.idl
IDL_INCLUDES = \
......@@ -160,7 +161,6 @@ WINDOWS_INCLUDES = \
tapi.h \
tchar.h \
tlhelp32.h \
urlmon.h \
uuids.h \
ver.h \
vfw.h \
......
......@@ -131,6 +131,12 @@ typedef struct _SECURITY_DESCRIPTOR {
PACL Dacl;
} SECURITY_DESCRIPTOR, *PSECURITY_DESCRIPTOR;
typedef struct _SECURITY_ATTRIBUTES {
DWORD nLength;
LPVOID lpSecurityDescriptor;
BOOL bInheritHandle;
} SECURITY_ATTRIBUTES, *PSECURITY_ATTRIBUTES, *LPSECURITY_ATTRIBUTES;
typedef struct tagSIZE {
LONG cx;
LONG cy;
......
......@@ -126,6 +126,13 @@ typedef struct _SECURITY_DESCRIPTOR {
PACL Dacl;
} SECURITY_DESCRIPTOR, *PSECURITY_DESCRIPTOR;
typedef struct _SECURITY_ATTRIBUTES
{
DWORD nLength;
LPVOID lpSecurityDescriptor;
BOOL bInheritHandle;
} SECURITY_ATTRIBUTES, *PSECURITY_ATTRIBUTES, *LPSECURITY_ATTRIBUTES;
typedef struct tagSIZE
{
LONG cx;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment