- 37개 파일 IP → zioinfo.co.kr 치환 (소스/매뉴얼/설정/하네스) - Manager DrConsole/NetworkConsole/CsapConsole 빌드 + /var/www/manager/ 배포 - 테스트: Manager HTTP 200, ITSM 신규 API 7개 전체 200 Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
42 lines
1.4 KiB
C++
42 lines
1.4 KiB
C++
#pragma once
|
|
|
|
#include "NativeModules.h"
|
|
#include "RNScreensModule.g.h"
|
|
#include "pch.h"
|
|
#include "winrt/Microsoft.ReactNative.h"
|
|
|
|
namespace winrt::RNScreens::implementation {
|
|
|
|
class RNScreensModule : public RNScreensModuleT<RNScreensModule> {
|
|
public:
|
|
RNScreensModule(Microsoft::ReactNative::IReactContext const &reactContext);
|
|
|
|
static winrt::Windows::Foundation::Collections::IMapView<
|
|
winrt::hstring,
|
|
winrt::Microsoft::ReactNative::ViewManagerPropertyType>
|
|
NativeProps() noexcept;
|
|
void UpdateProperties(winrt::Microsoft::ReactNative::IJSValueReader const
|
|
&propertyMapReader) noexcept;
|
|
|
|
static winrt::Microsoft::ReactNative::ConstantProviderDelegate
|
|
ExportedCustomBubblingEventTypeConstants() noexcept;
|
|
static winrt::Microsoft::ReactNative::ConstantProviderDelegate
|
|
ExportedCustomDirectEventTypeConstants() noexcept;
|
|
|
|
static winrt::Windows::Foundation::Collections::IVectorView<winrt::hstring>
|
|
Commands() noexcept;
|
|
void DispatchCommand(
|
|
winrt::hstring const &commandId,
|
|
winrt::Microsoft::ReactNative::IJSValueReader const
|
|
&commandArgsReader) noexcept;
|
|
|
|
private:
|
|
Microsoft::ReactNative::IReactContext m_reactContext{nullptr};
|
|
};
|
|
} // namespace winrt::RNScreens::implementation
|
|
|
|
namespace winrt::RNScreens::factory_implementation {
|
|
struct RNScreensModule
|
|
: RNScreensModuleT<RNScreensModule, implementation::RNScreensModule> {};
|
|
} // namespace winrt::RNScreens::factory_implementation
|