VirtualBox

source: vbox/trunk/src/VBox/Main/src-helper-apps/VBoxVolInfo/libdevmapper-calls.h@ 98717

Last change on this file since 98717 was 98717, checked in by vboxsync, 22 months ago

Main/VBoxVolInfo: Don't link directly against libdevmapper but use the IPRT runtime loader to get rid of the buildtime dependency, bugref:10367

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 2.9 KB
Line 
1/** @file
2 * Stubs for dynamically loading libdevmapper and the symbols which are needed by
3 * VirtualBox.
4 */
5
6/*
7 * Copyright (C) 2023 Oracle and/or its affiliates.
8 *
9 * This file is part of VirtualBox base platform packages, as
10 * available from https://www.virtualbox.org.
11 *
12 * This program is free software; you can redistribute it and/or
13 * modify it under the terms of the GNU General Public License
14 * as published by the Free Software Foundation, in version 3 of the
15 * License.
16 *
17 * This program is distributed in the hope that it will be useful, but
18 * WITHOUT ANY WARRANTY; without even the implied warranty of
19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
20 * General Public License for more details.
21 *
22 * You should have received a copy of the GNU General Public License
23 * along with this program; if not, see <https://www.gnu.org/licenses>.
24 *
25 * The contents of this file may alternatively be used under the terms
26 * of the Common Development and Distribution License Version 1.0
27 * (CDDL), a copy of it is provided in the "COPYING.CDDL" file included
28 * in the VirtualBox distribution, in which case the provisions of the
29 * CDDL are applicable instead of those of the GPL.
30 *
31 * You may elect to license modified versions of this file under the
32 * terms and conditions of either the GPL or the CDDL or both.
33 *
34 * SPDX-License-Identifier: GPL-3.0-only OR CDDL-1.0
35 */
36
37/** The file name of the libdevmapper library */
38#define RT_RUNTIME_LOADER_LIB_NAME "libdevmapper.so"
39
40/** The name of the loader function */
41#define RT_RUNTIME_LOADER_FUNCTION RTDevmapperLoadLib
42
43/** The following are the symbols which we need from the libdevmapper library. */
44#define RT_RUNTIME_LOADER_INSERT_SYMBOLS \
45 RT_PROXY_STUB(dm_task_create, struct dm_task *, (int type), \
46 (type)) \
47 RT_PROXY_STUB(dm_task_set_name, int, (struct dm_task *dmt, const char *name), \
48 (dmt, name)) \
49 RT_PROXY_STUB(dm_task_run, int, \
50 (struct dm_task *dmt), (dmt)) \
51 RT_PROXY_STUB(dm_task_get_info, int, \
52 (struct dm_task *dmt, struct dm_info *dmi), (dmt, dmi)) \
53 RT_PROXY_STUB(dm_task_get_deps, struct dm_deps *, (struct dm_task *dmt), \
54 (dmt)) \
55 RT_PROXY_STUB(dm_task_destroy, void, (struct dm_task *dmt), \
56 (dmt))
57
58#ifdef VBOX_LIBDEVMAPPER_GENERATE_HEADER
59# define RT_RUNTIME_LOADER_GENERATE_HEADER
60# define RT_RUNTIME_LOADER_GENERATE_DECLS
61# include <iprt/runtime-loader.h>
62# undef RT_RUNTIME_LOADER_GENERATE_HEADER
63# undef RT_RUNTIME_LOADER_GENERATE_DECLS
64
65#elif defined(VBOX_LIBDEVMAPPER_GENERATE_BODY)
66# define RT_RUNTIME_LOADER_GENERATE_BODY_STUBS
67# include <iprt/runtime-loader.h>
68# undef RT_RUNTIME_LOADER_GENERATE_BODY_STUBS
69
70#else
71# error This file should only be included to generate stubs for loading the libdevmapper library at runtime
72#endif
73
74#undef RT_RUNTIME_LOADER_LIB_NAME
75#undef RT_RUNTIME_LOADER_INSERT_SYMBOLS
76
Note: See TracBrowser for help on using the repository browser.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette