b.liu | ced8dd0 | 2024-06-28 13:28:29 +0800 | [diff] [blame^] | 1 | #ifndef JACANA_CALLBACK_H |
| 2 | #define JACANA_CALLBACK_H |
| 3 | |
| 4 | #ifdef __cplusplus |
| 5 | extern "C" { |
| 6 | #endif |
| 7 | |
| 8 | #include "aboot-tiny.h" |
| 9 | |
| 10 | aboot_tiny_error_t jacana_aboot_tiny_get_result(void); |
| 11 | void jacana_aboot_tiny_set_result(aboot_tiny_error_t r); |
| 12 | void jacana_aboot_tiny_callback(const aboot_tiny_message_t *msg); |
| 13 | |
| 14 | /*---------------------------------------------------------------------------*/ |
| 15 | |
| 16 | #ifdef __cplusplus |
| 17 | } /* extern "C" */ |
| 18 | #endif |
| 19 | |
| 20 | #endif /* JACANA_CALLBACK_H */ |