mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-06-19 00:41:43 +00:00
14 lines
470 B
C++
14 lines
470 B
C++
#pragma once
|
|
|
|
#include <stdint.h>
|
|
|
|
extern "C" {
|
|
void* initializeNotifier(void (*process)(uint64_t, void*), void* param,
|
|
int32_t* status);
|
|
void cleanNotifier(void* notifier_pointer, int32_t* status);
|
|
void* getNotifierParam(void* notifier_pointer, int32_t* status);
|
|
void updateNotifierAlarm(void* notifier_pointer, uint64_t triggerTime,
|
|
int32_t* status);
|
|
void stopNotifierAlarm(void* notifier_pointer, int32_t* status);
|
|
}
|