Files
windowmanager/interfaces/kits/napi/display_runtime/js_display_module.cpp
T
zengqingyu 049efe08c5 rename refreshRate and display runtime
Signed-off-by: zengqingyu <zengqingyu3@huawei.com>
Change-Id: I356098252b4509336a06f9c777c4d681362d7b06
2022-03-10 14:44:14 +08:00

30 lines
1.1 KiB
C++

/*
* Copyright (c) 2022 Huawei Device Co., Ltd.
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#include "js_display_manager.h"
#include "native_engine/native_engine.h"
extern "C" __attribute__((constructor)) void NAPI_application_displaymanager_AutoRegister()
{
auto moduleManager = NativeModuleManager::GetInstance();
NativeModule newModuleInfo = {
.name = "display",
.fileName = "module/libdisplay_napi.so/display.js",
.registerCallback = OHOS::Rosen::JsDisplayManagerInit,
};
moduleManager->Register(&newModuleInfo);
}