This repository has been archived on 2025-01-27. You can view files and clone it, but cannot push or open issues or pull requests.
whisper_flutter_new/ios/Classes/whisper_flutter_new.h

18 lines
408 B
C
Raw Normal View History

#if defined(__GNUC__)
// Attributes to prevent 'unused' function from being removed and to make it visible
#define FUNCTION_ATTRIBUTE __attribute__((visibility("default"))) __attribute__((used))
#elif defined(_MSC_VER)
// Marking a function for export
#define FUNCTION_ATTRIBUTE __declspec(dllexport)
#endif
#ifdef __cplusplus
extern "C"
{
#endif
char *request(char *body);
#ifdef __cplusplus
}
#endif