mirror of
https://github.com/Next-Flip/Momentum-Firmware.git
synced 2026-05-09 05:49:09 -07:00
13 lines
354 B
C
13 lines
354 B
C
#pragma once
|
|
|
|
#include <flipper_application/api_hashtable/api_hashtable.h>
|
|
|
|
/*
|
|
* Resolver interface with private application's symbols.
|
|
* Implementation is contained in app_api_table.c
|
|
*/
|
|
#ifdef __cplusplus
|
|
extern "C" const ElfApiInterface* const application_api_interface;
|
|
#else
|
|
extern const ElfApiInterface* const application_api_interface;
|
|
#endif |