53 lines
1021 B
C
Executable File
53 lines
1021 B
C
Executable File
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
#include "cc_constants.h"
|
|
|
|
/**
|
|
* Initialize the BLF stack
|
|
* @return
|
|
*/
|
|
int CC_BLF_init()
|
|
{
|
|
return 0;
|
|
}
|
|
/**
|
|
* Start BLF subscription
|
|
* @param request_id the request id
|
|
* @param duration the subscription duration
|
|
* @param watcher the name of subscription watcher
|
|
* @param presentity
|
|
* @param app_id the application id for the BLF
|
|
* @param feature_mask
|
|
* @return void
|
|
*/
|
|
void CC_BLF_subscribe(int request_id,
|
|
int duration,
|
|
const char *watcher,
|
|
const char *presentity,
|
|
int app_id,
|
|
int feature_mask)
|
|
{
|
|
return;
|
|
}
|
|
|
|
/**
|
|
* Unsubscribe the BLF subscription
|
|
* @param request_id the request id
|
|
* @return void
|
|
*/
|
|
void CC_BLF_unsubscribe(int request_id)
|
|
{
|
|
return;
|
|
}
|
|
|
|
/**
|
|
* Unsubscribe all BLF subscription
|
|
* @return void
|
|
*/
|
|
void CC_BLF_unsubscribe_All()
|
|
{
|
|
return;
|
|
}
|