2014-05-02 17:54:01 -04:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
|
|
#include <stdint.h>
|
|
|
|
|
|
|
|
|
|
extern "C"
|
|
|
|
|
{
|
2015-12-30 19:06:47 -08:00
|
|
|
void* initializeNotifier(void (*process)(uint64_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);
|
2015-12-30 19:06:47 -08:00
|
|
|
void updateNotifierAlarm(void* notifier_pointer, uint64_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
|
|
|
}
|