Changeset 76504 in vbox for trunk/include
- Timestamp:
- Dec 30, 2018 2:55:34 AM (6 years ago)
- Location:
- trunk/include/VBox
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/VDEPlug.h
r69107 r76504 1 1 /** @file 2 * 3 * Module to dynamically load libvdeplug and load all symbols 4 * which are needed by VirtualBox - header file. 2 * libvdeplug header and dynamic symbol loader. 5 3 */ 6 4 … … 34 32 vde_open_real((vde_switch), (descr), LIBVDEPLUG_INTERFACE_VERSION, (open_args)) 35 33 34 /** Opaque connection type */ 35 struct vdeconn; 36 typedef struct vdeconn VDECONN; 37 38 /** Structure to be passed to the open function describing the connection. 39 * All members can be left zero to use the default values. */ 40 struct vde_open_args 41 { 42 /** The port of the switch to connect to. */ 43 int port; 44 /** The group to set ownership of the port socket to. */ 45 char *group; 46 /** The file mode to set the port socket to. */ 47 mode_t mode; 48 }; 49 36 50 /* Declarations of the functions that we need from the library */ 37 51 #define VDEPLUG_GENERATE_HEADER -
trunk/include/VBox/VDEPlugSymDefs.h
r69107 r76504 26 26 #include <stddef.h> 27 27 #include <sys/types.h> 28 29 /** Opaque connection type */30 struct vdeconn;31 typedef struct vdeconn VDECONN;32 33 /** Structure to be passed to the open function describing the connection.34 * All members can be left zero to use the default values. */35 struct vde_open_args36 {37 /** The port of the switch to connect to. */38 int port;39 /** The group to set ownership of the port socket to. */40 char *group;41 /** The file mode to set the port socket to. */42 mode_t mode;43 };44 28 45 29 /** The file name of the DBus library */
Note:
See TracChangeset
for help on using the changeset viewer.