Infuse-IoT SDK API 0.0.1
A Scalable Open Source RTOS
Loading...
Searching...
No Matches
progress_cb.h
Go to the documentation of this file.
1
9
10#ifndef INFUSE_SDK_INCLUDE_INFUSE_UTIL_PROGRESS_CB_H_
11#define INFUSE_SDK_INCLUDE_INFUSE_UTIL_PROGRESS_CB_H_
12
13#include <stdint.h>
14
15#ifdef __cplusplus
16extern "C" {
17#endif
18
23
30typedef void (*infuse_progress_cb_t)(uint32_t progress, uint32_t total);
31
35
36#ifdef __cplusplus
37}
38#endif
39
40#endif /* INFUSE_SDK_INCLUDE_INFUSE_UTIL_PROGRESS_CB_H_ */
void(* infuse_progress_cb_t)(uint32_t progress, uint32_t total)
Common progress callback type definition.
Definition progress_cb.h:30