* generate windows files * adjustments * attempt compile * Fix windows build * Add note about VS 2019 * Update .gitignore Co-authored-by: Artur Shellunts <[email protected]>
24 lines
520 B
C
24 lines
520 B
C
#ifndef FLUTTER_PLUGIN_LIVEKIT_PLUGIN_H_
|
|
#define FLUTTER_PLUGIN_LIVEKIT_PLUGIN_H_
|
|
|
|
#include <flutter_plugin_registrar.h>
|
|
|
|
#ifdef FLUTTER_PLUGIN_IMPL
|
|
#define FLUTTER_PLUGIN_EXPORT __declspec(dllexport)
|
|
#else
|
|
#define FLUTTER_PLUGIN_EXPORT __declspec(dllimport)
|
|
#endif
|
|
|
|
#if defined(__cplusplus)
|
|
extern "C" {
|
|
#endif
|
|
|
|
FLUTTER_PLUGIN_EXPORT void LiveKitPluginRegisterWithRegistrar(
|
|
FlutterDesktopPluginRegistrarRef registrar);
|
|
|
|
#if defined(__cplusplus)
|
|
} // extern "C"
|
|
#endif
|
|
|
|
#endif // FLUTTER_PLUGIN_LIVEKIT_PLUGIN_H_
|