You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 lines
592 B

/*
* Copyright (c) Hisilicon Technologies Co., Ltd.. 2020-2022. All rights reserved.
* Description: Support private hwdisplay hidl interface
* Author: Hisilicon
* Created: 2022-11-21
*/
#define LOG_TAG "vendor.huanglong.hardware.hwdisplay@2.0-service"
#include <vendor/huanglong/hardware/hwdisplay/2.0/IHwdisplay.h>
#include <hidl/LegacySupport.h>
#include <android/log.h>
using vendor::huanglong::hardware::hwdisplay::V2_0::IHwdisplay;
using android::hardware::defaultPassthroughServiceImplementation;
int main()
{
return defaultPassthroughServiceImplementation<IHwdisplay>();
}