mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2024-11-01 02:41:14 +00:00
e91a6d8e22
This is no longer supported since 2018/04 Reviewed-by: Michal Privoznik <mprivozn@redhat.com> Signed-off-by: Daniel P. Berrangé <berrange@redhat.com>
57 lines
2.0 KiB
C
57 lines
2.0 KiB
C
/** @file vbox_XPCOMCGlue.h
|
|
* Glue for dynamically linking with VBoxXPCOMC.
|
|
*/
|
|
|
|
/*
|
|
* Copyright (C) 2008-2009 Sun Microsystems, Inc.
|
|
*
|
|
* This file is part of a free software library; you can redistribute
|
|
* it and/or modify it under the terms of the GNU Lesser General
|
|
* Public License version 2.1 as published by the Free Software
|
|
* Foundation and shipped in the "COPYING.LESSER" file with this library.
|
|
* The library is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY of any kind.
|
|
*
|
|
* Sun LGPL Disclaimer: For the avoidance of doubt, except that if
|
|
* any license choice other than GPL or LGPL is available it will
|
|
* apply instead, Sun elects to use only the Lesser General Public
|
|
* License version 2.1 (LGPLv2) at this time for any software where
|
|
* a choice of LGPL license versions is made available with the
|
|
* language indicating that LGPLv2 or any later version may be used,
|
|
* or where a choice of which version of the LGPL is applied is
|
|
* otherwise unspecified.
|
|
*
|
|
* Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa
|
|
* Clara, CA 95054 USA or visit http://www.sun.com if you need
|
|
* additional information or have any questions.
|
|
*/
|
|
|
|
#ifndef ___VBoxXPCOMC_cglue_h
|
|
# define ___VBoxXPCOMC_cglue_h
|
|
|
|
/* This has to be the oldest version we support. */
|
|
# include "vbox_CAPI_v5_2.h"
|
|
|
|
/** Pointer to VBoxGetXPCOMCFunctions for the loaded VBoxXPCOMC so/dylib/dll. */
|
|
extern PFNVBOXGETXPCOMCFUNCTIONS g_pfnGetFunctions;
|
|
|
|
int VBoxCGlueInit(unsigned int *version);
|
|
void VBoxCGlueTerm(void);
|
|
|
|
typedef struct _vboxArray vboxArray;
|
|
|
|
struct _vboxArray {
|
|
void **items;
|
|
size_t count;
|
|
};
|
|
|
|
# define VBOX_ARRAY_INITIALIZER { NULL, 0 }
|
|
|
|
nsresult vboxArrayGet(vboxArray *array, void *self, void *getter);
|
|
nsresult vboxArrayGetWithPtrArg(vboxArray *array, void *self, void *getter, void *arg);
|
|
nsresult vboxArrayGetWithUintArg(vboxArray *array, void *self, void *getter, PRUint32 arg);
|
|
void vboxArrayRelease(vboxArray *array);
|
|
void vboxArrayUnalloc(vboxArray *array);
|
|
|
|
#endif
|