libvirt_admin_public.syms 1.2 KB
Newer Older
M
Martin Kletzander 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14
#
# Officially exported symbols, for which header
# file definitions are installed in /usr/include/libvirt
# from libvirt-admin.h
#
# Versions here are *fixed* to match the libvirt version
# at which the symbol was introduced. This ensures that
# a new client app requiring symbol foo() can't accidentally
# run with old libvirt-admin.so not providing foo() - the global
# soname version info can't enforce this since we never
# change the soname
#
LIBVIRT_ADMIN_1.3.0 {
    global:
15 16 17 18
        virAdmClientFree;
        virAdmClientGetID;
        virAdmClientGetTimestamp;
        virAdmClientGetTransport;
19 20 21
        virAdmConnectOpen;
        virAdmConnectClose;
        virAdmConnectRef;
E
Erik Skultety 已提交
22
        virAdmGetVersion;
23 24 25 26 27
        virAdmConnectIsAlive;
        virAdmConnectGetURI;
        virAdmConnectGetLibVersion;
        virAdmConnectRegisterCloseCallback;
        virAdmConnectUnregisterCloseCallback;
28 29
        virAdmConnectListServers;
        virAdmServerGetName;
30
        virAdmServerGetThreadPoolParameters;
31
        virAdmServerFree;
32
        virAdmServerLookupClient;
33
        virAdmConnectLookupServer;
34
        virAdmServerSetThreadPoolParameters;
E
Erik Skultety 已提交
35
        virAdmServerListClients;
36
        virAdmClientGetInfo;
37
        virAdmClientClose;
M
Martin Kletzander 已提交
38
};