Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
1/6/2010
This structure defines the characteristics of the data buffer used by Bluetooth stack layers.
Syntax
struct BD_BUFFER {
int cSize;
int cStart;
int cEnd;
BD_BUFFER_FREE pFree;
int fMustCopy;
unsigned char* pBuffer;
};
Members
- cSize
Defines the size of pBuffer.
- cStart
Defines the offset of valid information in pBuffer.
- cEnd
Defines the end of valid information in pBuffer.
- pFree
NULL or pointer to the function to free the buffer.
- fMustCopy
Buffer must be copied before stack returns. pFree can be NULL in this case.
- pBuffer
Pointer to the buffer data.
Requirements
| Header | bt_buffer.h |
| Windows Embedded CE | Windows CE .NET 4.0 and later |