Files
mraa/include/mraa_lang_func.h
Thomas Ingleby 170bdd104f spdx: add spdx tags to most files
Large change that removes the duplicated MIT notice withe a spdx tag

Signed-off-by: Thomas Ingleby <thomas.ingleby@intel.com>
2019-05-23 10:09:12 -07:00

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;