Large change that removes the duplicated MIT notice withe a spdx tag Signed-off-by: Thomas Ingleby <thomas.ingleby@intel.com>
19 lines
444 B
C
19 lines
444 B
C
/*
|
|
* Author: Henry Bruce <henry.bruce@intel.com>
|
|
* Copyright (c) 2016 Intel Corporation.
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
typedef struct {
|
|
void (*python_isr)(void (*isr)(void*), void* isr_args);
|
|
void (*java_isr_callback)(void *args);
|
|
mraa_result_t (*java_attach_thread)();
|
|
void (*java_detach_thread)();
|
|
void* (*java_create_global_ref)(void* args);
|
|
void (*java_delete_global_ref)(void* ref);
|
|
|
|
} mraa_lang_func_t;
|