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 | { |
Brian Silverman | 1a67511 | 2016-02-20 20:42:49 -0500 | [diff] [blame^] | 7 | void* initializeNotifier(void (*process)(uint64_t, void*), void* param, int32_t *status); |
Brian Silverman | 26e4e52 | 2015-12-17 01:56:40 -0500 | [diff] [blame] | 8 | void cleanNotifier(void* notifier_pointer, int32_t *status); |
Brian Silverman | 1a67511 | 2016-02-20 20:42:49 -0500 | [diff] [blame^] | 9 | void* getNotifierParam(void* notifier_pointer, int32_t *status); |
| 10 | void updateNotifierAlarm(void* notifier_pointer, uint64_t triggerTime, int32_t *status); |
| 11 | void stopNotifierAlarm(void* notifier_pointer, int32_t *status); |
Brian Silverman | 26e4e52 | 2015-12-17 01:56:40 -0500 | [diff] [blame] | 12 | } |