Brian Silverman | 26e4e52 | 2015-12-17 01:56:40 -0500 | [diff] [blame^] | 1 | #pragma once |
2 | |||||
3 | #include <stdint.h> | ||||
4 | |||||
5 | extern "C" | ||||
6 | { | ||||
7 | void* initializeNotifier(void (*ProcessQueue)(uint32_t, void*), void* param, int32_t *status); | ||||
8 | void cleanNotifier(void* notifier_pointer, int32_t *status); | ||||
9 | |||||
10 | void updateNotifierAlarm(void* notifier_pointer, uint32_t triggerTime, int32_t *status); | ||||
11 | } |