1ca0551cfSopenharmony_ci/*
2ca0551cfSopenharmony_ci * Copyright (C) 2023 Huawei Device Co., Ltd.
3ca0551cfSopenharmony_ci * Licensed under the Apache License, Version 2.0 (the "License");
4ca0551cfSopenharmony_ci * you may not use this file except in compliance with the License.
5ca0551cfSopenharmony_ci * You may obtain a copy of the License at
6ca0551cfSopenharmony_ci *
7ca0551cfSopenharmony_ci *     http://www.apache.org/licenses/LICENSE-2.0
8ca0551cfSopenharmony_ci *
9ca0551cfSopenharmony_ci * Unless required by applicable law or agreed to in writing, software
10ca0551cfSopenharmony_ci * distributed under the License is distributed on an "AS IS" BASIS,
11ca0551cfSopenharmony_ci * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12ca0551cfSopenharmony_ci * See the License for the specific language governing permissions and
13ca0551cfSopenharmony_ci * limitations under the License.
14ca0551cfSopenharmony_ci */
15ca0551cfSopenharmony_ci
16ca0551cfSopenharmony_ciinterface IIdlTestService {
17ca0551cfSopenharmony_ci    void idl_ipc_test_basic_001();
18ca0551cfSopenharmony_ci    [oneway] void idl_ipc_test_basic_002();
19ca0551cfSopenharmony_ci
20ca0551cfSopenharmony_ci    boolean idl_ipc_test_basic_101([in] boolean iBool);
21ca0551cfSopenharmony_ci    byte idl_ipc_test_basic_102([in] byte iByte);
22ca0551cfSopenharmony_ci    short idl_ipc_test_basic_103([in] short iShort);
23ca0551cfSopenharmony_ci    int idl_ipc_test_basic_104([in] int iInt);
24ca0551cfSopenharmony_ci    long idl_ipc_test_basic_105([in] long iLong);
25ca0551cfSopenharmony_ci    float idl_ipc_test_basic_106([in] float iFloat);
26ca0551cfSopenharmony_ci    double idl_ipc_test_basic_107([in] double iDouble);
27ca0551cfSopenharmony_ci    String idl_ipc_test_basic_108([in] String iString);
28ca0551cfSopenharmony_ci    boolean idl_ipc_test_basic_199([in] boolean iBool, [in] long iLong, [in] float iFloat,
29ca0551cfSopenharmony_ci        [in] double iDouble, [in] String iString);
30ca0551cfSopenharmony_ci}
31