mirror of
https://github.com/reactos/reactos.git
synced 2024-12-27 01:24:38 +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;
|
||||
} WSADATA, FAR* LPWSADATA;
|
||||
|
||||
#if 0
|
||||
#ifndef _BLOB_DEFINED
|
||||
#define _BLOB_DEFINED
|
||||
typedef struct _BLOB {
|
||||
ULONG cbSize;
|
||||
BYTE *pBlobData;
|
||||
} BLOB, *LPBLOB;
|
||||
#endif
|
||||
#else
|
||||
typedef BLOB *LPBLOB;
|
||||
#endif
|
||||
|
||||
typedef struct _SOCKET_ADDRESS {
|
||||
LPSOCKADDR lpSockaddr;
|
||||
|
|
Loading…
Reference in a new issue