15 lines
191 B
C
15 lines
191 B
C
|
|
#ifndef RUST_APP_WRAPPER_H
|
||
|
|
#define RUST_APP_WRAPPER_H
|
||
|
|
|
||
|
|
#ifdef __cplusplus
|
||
|
|
extern "C" {
|
||
|
|
#endif
|
||
|
|
|
||
|
|
void rust_app_wrapper_init(void);
|
||
|
|
|
||
|
|
#ifdef __cplusplus
|
||
|
|
}
|
||
|
|
#endif
|
||
|
|
|
||
|
|
#endif /* RUST_APP_WRAPPER_H */
|