2014-05-02 17:54:01 -04:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
|
|
#include <stdint.h>
|
|
|
|
|
|
|
|
|
|
extern "C"
|
|
|
|
|
{
|
2015-12-17 16:19:44 -08:00
|
|
|
void* initializeNotifier(void (*process)(uint32_t, void*), void* param, int32_t *status);
|
2014-05-02 17:54:01 -04:00
|
|
|
void cleanNotifier(void* notifier_pointer, int32_t *status);
|
2015-12-17 16:19:44 -08:00
|
|
|
void* getNotifierParam(void* notifier_pointer, int32_t *status);
|
2014-05-02 17:54:01 -04:00
|
|
|
void updateNotifierAlarm(void* notifier_pointer, uint32_t triggerTime, int32_t *status);
|
2015-12-17 16:19:44 -08:00
|
|
|
void stopNotifierAlarm(void* notifier_pointer, int32_t *status);
|
2014-05-02 17:54:01 -04:00
|
|
|
}
|