blob: 899e3f50bb56b26a69032f112e0d6b0357f9a336 [file] [log] [blame]
/*
$License:
Copyright (C) 2011-2012 InvenSense Corporation, All Rights Reserved.
See included License.txt for License information.
$
*/
#ifndef INV_START_MANAGER_H__
#define INV_START_MANAGER_H__
#ifdef __cplusplus
extern "C" {
#endif
#include "mltypes.h"
/** Max number of start callbacks we can handle. */
#define INV_MAX_START_CB 20
inv_error_t inv_init_start_manager(void);
inv_error_t inv_register_mpl_start_notification(inv_error_t (*start_cb)(void));
inv_error_t inv_execute_mpl_start_notification(void);
inv_error_t inv_unregister_mpl_start_notification(inv_error_t (*start_cb)(void));
#ifdef __cplusplus
}
#endif
#endif // INV_START_MANAGER_H__