Moves handle definitions to main handle header (#115)

This commit is contained in:
Thad House
2016-06-27 13:36:38 -07:00
committed by Peter Johnson
parent e1d4845ccd
commit 5e2a76147c
4 changed files with 6 additions and 6 deletions

View File

@@ -11,8 +11,6 @@
#include "Handles.h"
typedef HalHandle HalAnalogOutputHandle;
extern "C" {
HalAnalogOutputHandle initializeAnalogOutputPort(HalPortHandle port_handle,
int32_t* status);

View File

@@ -14,3 +14,9 @@
typedef int32_t HalHandle;
typedef HalHandle HalPortHandle;
typedef HalHandle HalInterruptHandle;
typedef HalHandle HalNotifierHandle;
typedef HalHandle HalAnalogOutputHandle;

View File

@@ -11,8 +11,6 @@
#include "Handles.h"
typedef HalHandle HalInterruptHandle;
extern "C" {
typedef void (*InterruptHandlerFunction)(uint32_t interruptAssertedMask,
void* param);

View File

@@ -11,8 +11,6 @@
#include "Handles.h"
typedef HalHandle HalNotifierHandle;
extern "C" {
HalNotifierHandle initializeNotifier(void (*process)(uint64_t, void*),
void* param, int32_t* status);