123456789101112131415161718192021 |
- #include "pch.h"
- #include "WebBridge.h"
-
-
-
- using namespace WebViewBridge;
- using namespace Platform;
-
-
- // https://docs.microsoft.com/en-us/windows/uwp/winrt-components/create-a-windows-runtime-component-in-cppwinrt
- // https://github.com/microsoft/react-native-windows/blob/0.59-legacy/current/ReactWindows/ReactNativeWebViewBridge/WebViewBridge.cs
-
-
- WebBridge::WebBridge(int64 tag)
- {
- //winrt::hstring w{ L"Hello, World!" };
- }
-
- void WebBridge::PostMessage() {
- }
|