Add const keyword to the demo function parameters where possible.

This commit is contained in:
Dean Camera 2010-04-18 12:10:30 +00:00
parent 55db57e1ed
commit fc8e4837a9
47 changed files with 158 additions and 158 deletions

View file

@ -208,8 +208,8 @@
void Bluetooth_HCITask(void);
#if defined(INCLUDE_FROM_BLUETOOTHHCICOMMANDS_C)
static uint8_t Bluetooth_SendHCICommand(BT_HCICommand_Header_t* HCICommandHeader, void* Parameters,
uint16_t ParameterLength);
static uint8_t Bluetooth_SendHCICommand(const BT_HCICommand_Header_t* const HCICommandHeader, const void* Parameters,
const uint16_t ParameterLength);
#endif
#endif