2019-12-24 20:31:24 +00:00
|
|
|
/* Types and functions for communication between C++ and Objective-C layers. */
|
|
|
|
|
|
|
|
#if !defined(MAC_OBJECTIVE_C_TO_CPP_LINKS_H)
|
|
|
|
#define MAC_OBJECTIVE_C_TO_CPP_LINKS_H
|
|
|
|
|
|
|
|
// In C++ layer.
|
2019-12-25 01:17:12 +00:00
|
|
|
external void
|
2019-12-24 20:31:24 +00:00
|
|
|
mac_init();
|
|
|
|
|
|
|
|
// In Objective-C layer.
|
2019-12-25 01:17:12 +00:00
|
|
|
external i32
|
|
|
|
mac_get_binary_path(void* buffer, u32 size);
|
2019-12-24 20:31:24 +00:00
|
|
|
|
|
|
|
#endif
|
|
|
|
|