VirtualBox

Changeset 76504 in vbox for trunk/include


Ignore:
Timestamp:
Dec 30, 2018 2:55:34 AM (6 years ago)
Author:
vboxsync
Message:

VDEPlugSymDefs.h fix

Location:
trunk/include/VBox
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/include/VBox/VDEPlug.h

    r69107 r76504  
    11/** @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.
    53 */
    64
     
    3432    vde_open_real((vde_switch), (descr), LIBVDEPLUG_INTERFACE_VERSION, (open_args))
    3533
     34/** Opaque connection type */
     35struct vdeconn;
     36typedef 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. */
     40struct 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
    3650/* Declarations of the functions that we need from the library */
    3751#define VDEPLUG_GENERATE_HEADER
  • trunk/include/VBox/VDEPlugSymDefs.h

    r69107 r76504  
    2626#include <stddef.h>
    2727#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_args
    36 {
    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 };
    4428
    4529/** The file name of the DBus library */
Note: See TracChangeset for help on using the changeset viewer.

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