• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /*
2  * Copyright (c) 2022-2023 Huawei Device Co., Ltd.
3  * Licensed under the Apache License, Version 2.0 (the "License");
4  * you may not use this file except in compliance with the License.
5  * You may obtain a copy of the License at
6  *
7  *     http://www.apache.org/licenses/LICENSE-2.0
8  *
9  * Unless required by applicable law or agreed to in writing, software
10  * distributed under the License is distributed on an "AS IS" BASIS,
11  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12  * See the License for the specific language governing permissions and
13  * limitations under the License.
14  */
15 #include "lnn_settingdata_event_monitor.h"
16 
17 #include "softbus_error_code.h"
18 
LnnGetUnifiedDisplayDeviceName(char * unifiedDisplayName,uint32_t len)19 int32_t LnnGetUnifiedDisplayDeviceName(char *unifiedDisplayName, uint32_t len)
20 {
21     (void)unifiedDisplayName;
22     (void)len;
23     return SOFTBUS_NOT_IMPLEMENT;
24 }
25 
LnnGetUnifiedDeviceName(char * unifiedName,uint32_t len)26 int32_t LnnGetUnifiedDeviceName(char *unifiedName, uint32_t len)
27 {
28     (void)unifiedName;
29     (void)len;
30     return SOFTBUS_NOT_IMPLEMENT;
31 }
32 
LnnGetUnifiedDefaultDeviceName(char * unifiedDefaultName,uint32_t len)33 int32_t LnnGetUnifiedDefaultDeviceName(char *unifiedDefaultName, uint32_t len)
34 {
35     (void)unifiedDefaultName;
36     (void)len;
37     return SOFTBUS_NOT_IMPLEMENT;
38 }
39 
LnnGetSettingNickName(const char * defaultName,const char * unifiedName,char * nickName,uint32_t len)40 int32_t LnnGetSettingNickName(const char *defaultName, const char *unifiedName, char *nickName, uint32_t len)
41 {
42     (void)defaultName;
43     (void)unifiedName;
44     (void)nickName;
45     (void)len;
46     return SOFTBUS_NOT_IMPLEMENT;
47 }
48 
LnnGetDeviceDisplayName(const char * nickName,const char * defaultName,char * deviceName,uint32_t len)49 int32_t LnnGetDeviceDisplayName(const char *nickName, const char *defaultName, char *deviceName, uint32_t len)
50 {
51     (void)nickName;
52     (void)defaultName;
53     (void)deviceName;
54     (void)len;
55     return SOFTBUS_NOT_IMPLEMENT;
56 }
57