1 /* 2 * Copyright (c) 2020-2022 Huawei Device Co., Ltd. 3 * 4 * HDF is dual licensed: you can use it either under the terms of 5 * the GPL, or the BSD license, at your option. 6 * See the LICENSE file in the root of this repository for complete details. 7 */ 8 9 #ifndef DEVICE_TOKEN_IF_H 10 #define DEVICE_TOKEN_IF_H 11 12 #include "hdf_object.h" 13 #include "hdf_device.h" 14 15 struct IHdfDeviceToken { 16 struct HdfObject object; 17 devid_t devid; 18 const char *servName; 19 const char *deviceName; 20 }; 21 22 #endif /* DEVICE_TOKEN_IF_H */ 23