BD_BUFFER
This structure defines the characteristics of the data buffer used by Bluetooth stack layers.
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
OS Versions: Windows CE .NET 4.0 and later.
Header: Bt_buffer.h.
Last updated on Wednesday, April 13, 2005
© 2005 Microsoft Corporation. All rights reserved.