153a5a1b3Sopenharmony_ci/*
253a5a1b3Sopenharmony_ci * Copyright (c) 2021-2022 Huawei Device Co., Ltd.
353a5a1b3Sopenharmony_ci * Licensed under the Apache License, Version 2.0 (the "License");
453a5a1b3Sopenharmony_ci * you may not use this file except in compliance with the License.
553a5a1b3Sopenharmony_ci * You may obtain a copy of the License at
653a5a1b3Sopenharmony_ci *
753a5a1b3Sopenharmony_ci *     http://www.apache.org/licenses/LICENSE-2.0
853a5a1b3Sopenharmony_ci *
953a5a1b3Sopenharmony_ci * Unless required by applicable law or agreed to in writing, software
1053a5a1b3Sopenharmony_ci * distributed under the License is distributed on an "AS IS" BASIS,
1153a5a1b3Sopenharmony_ci * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1253a5a1b3Sopenharmony_ci * See the License for the specific language governing permissions and
1353a5a1b3Sopenharmony_ci * limitations under the License.
1453a5a1b3Sopenharmony_ci */
1553a5a1b3Sopenharmony_ci
1653a5a1b3Sopenharmony_ci/* This file stubs the functionality of
1753a5a1b3Sopenharmony_ci * libtool library used by pulseaudio.
1853a5a1b3Sopenharmony_ci */
1953a5a1b3Sopenharmony_ci
2053a5a1b3Sopenharmony_ci#ifndef LTDL_H
2153a5a1b3Sopenharmony_ci#define LTDL_H
2253a5a1b3Sopenharmony_ci
2353a5a1b3Sopenharmony_citypedef void  *lt_dlhandle;
2453a5a1b3Sopenharmony_ci
2553a5a1b3Sopenharmony_ciconst char *lt_dlerror(void);
2653a5a1b3Sopenharmony_ciconst char *lt_dlgetsearchpath(void);
2753a5a1b3Sopenharmony_ciint lt_dlclose(lt_dlhandle handle);
2853a5a1b3Sopenharmony_cilt_dlhandle lt_dlopenext(const char *filename);
2953a5a1b3Sopenharmony_civoid *lt_dlsym(lt_dlhandle handle, const char *symbol);
3053a5a1b3Sopenharmony_ci
3153a5a1b3Sopenharmony_ci#endif // LTDL_H
32