mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-06-27 02:01:42 +00:00
Renames all our .hpp HAL files to .h (#44)
Adds consistency, as the HAL was .hpp however all other code was .h.
This commit is contained in:
committed by
Peter Johnson
parent
248ca0c4a0
commit
8fc55c80a9
13
hal/include/HAL/Notifier.h
Normal file
13
hal/include/HAL/Notifier.h
Normal file
@@ -0,0 +1,13 @@
|
||||
#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);
|
||||
}
|
||||
Reference in New Issue
Block a user