|
|
|
|
|
|
|
|
|
Quick Info
Windows NT
| Yes
| Win95
| Yes
| Win32s
| No
| Import Library
| -
| Header File
| wtypes.h
| Unicode
| No
| Platform Notes
| None
|
|
|
BLOB
A BLOB structure contains information about a block of data.
typedef struct _BLOB {
ULONG cbSize;
BYTE *pBlobData;
} BLOB;
Members
cbSize
Specifies the size in bytes of the block of data pointed to by pBlobData
Addresses
Points to a block of data.
Remarks
The structure name BLOB comes from the acronym BLOB, which stands for "Binary Large OBject".
Note that this structure description says nothing about the nature of the data
pointed to by pBlobData.
See Also
SERVICE_INFO
Related Links
Software for Delphi and C++ Builder developers
Software for Visual Studio .NET developers
Software for Visual Basic 6 developers
Delphi Tips&Tricks
MegaDetailed.NET
More Online Helps
Win32 Multimedia Programmer's Reference (mmedia.hlp)
OLE Programmer's Reference (ole.hlp)
Microsoft Windows Pen API Programmer's Reference (penapi.hlp)
Microsoft Windows Sockets 2 Reference (sock2.hlp)
Microsoft Windows Telephony API (TAPI) Programmer's Reference (tapi.hlp)
Unix Manual Pages
|