mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 10:04:49 +00:00
Added backdoor check for _BLOB_DEFINED to prevent header conflict.
svn path=/trunk/; revision=3629
This commit is contained in:
parent
6cf061fde8
commit
273ae68ba9
1 changed files with 4 additions and 2 deletions
|
@ -650,13 +650,15 @@ typedef struct WSAData {
|
||||||
CHAR FAR* lpVendorInfo;
|
CHAR FAR* lpVendorInfo;
|
||||||
} WSADATA, FAR* LPWSADATA;
|
} WSADATA, FAR* LPWSADATA;
|
||||||
|
|
||||||
#if 0
|
#ifndef _BLOB_DEFINED
|
||||||
|
#define _BLOB_DEFINED
|
||||||
typedef struct _BLOB {
|
typedef struct _BLOB {
|
||||||
ULONG cbSize;
|
ULONG cbSize;
|
||||||
BYTE *pBlobData;
|
BYTE *pBlobData;
|
||||||
} BLOB, *LPBLOB;
|
} BLOB, *LPBLOB;
|
||||||
#endif
|
#else
|
||||||
typedef BLOB *LPBLOB;
|
typedef BLOB *LPBLOB;
|
||||||
|
#endif
|
||||||
|
|
||||||
typedef struct _SOCKET_ADDRESS {
|
typedef struct _SOCKET_ADDRESS {
|
||||||
LPSOCKADDR lpSockaddr;
|
LPSOCKADDR lpSockaddr;
|
||||||
|
|
Loading…
Reference in a new issue