mirror of
https://github.com/encounter/engine.git
synced 2026-07-10 03:18:43 -07:00
d452dd5c36
Changes include: - File structure - Header guards - Include paths - Namespaces - Integration with the engine's GN build - Conversion from jsoncpp to rapidjson - Style and clang-format adjustment to match engine repository
43 lines
1.5 KiB
C
43 lines
1.5 KiB
C
// Copyright 2013 The Flutter Authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
// found in the LICENSE file.
|
|
|
|
#ifndef FLUTTER_SHELL_PLATFORM_COMMON_CPP_PUBLIC_FLUTTER_PLUGIN_REGISTRAR_H_
|
|
#define FLUTTER_SHELL_PLATFORM_COMMON_CPP_PUBLIC_FLUTTER_PLUGIN_REGISTRAR_H_
|
|
|
|
#include <stddef.h>
|
|
#include <stdint.h>
|
|
|
|
#include "flutter_export.h"
|
|
#include "flutter_messenger.h"
|
|
|
|
#if defined(__cplusplus)
|
|
extern "C" {
|
|
#endif
|
|
|
|
// Opaque reference to a plugin registrar.
|
|
typedef struct FlutterDesktopPluginRegistrar* FlutterDesktopPluginRegistrarRef;
|
|
|
|
// Returns the engine messenger associated with this registrar.
|
|
FLUTTER_EXPORT FlutterDesktopMessengerRef
|
|
FlutterDesktopRegistrarGetMessenger(FlutterDesktopPluginRegistrarRef registrar);
|
|
|
|
// Enables input blocking on the given channel.
|
|
//
|
|
// If set, then the Flutter window will disable input callbacks
|
|
// while waiting for the handler for messages on that channel to run. This is
|
|
// useful if handling the message involves showing a modal window, for instance.
|
|
//
|
|
// This must be called after FlutterDesktopSetMessageHandler, as setting a
|
|
// handler on a channel will reset the input blocking state back to the
|
|
// default of disabled.
|
|
FLUTTER_EXPORT void FlutterDesktopRegistrarEnableInputBlocking(
|
|
FlutterDesktopPluginRegistrarRef registrar,
|
|
const char* channel);
|
|
|
|
#if defined(__cplusplus)
|
|
} // extern "C"
|
|
#endif
|
|
|
|
#endif // FLUTTER_SHELL_PLATFORM_COMMON_CPP_PUBLIC_FLUTTER_PLUGIN_REGISTRAR_H_
|