libvirt/src/libxl
Daniel P. Berrange 879d409e9e Convert all driver struct intializers to C99 style
Change all the driver struct initializers to use the
C99 style, leaving out unused fields. This will make
it possible to add new APIs without changing every
driver. eg change:

    qemudDomainResume, /* domainResume */
    qemudDomainShutdown, /* domainShutdown */
    NULL, /* domainReboot */
    qemudDomainDestroy, /* domainDestroy */

to

    .domainResume = qemudDomainResume,
    .domainShutdown = qemudDomainShutdown,
    .domainDestroy = qemudDomainDestroy,

And get rid of any existing C99 style initializersr which
set NULL, eg change

     .listPools          = vboxStorageListPools,
     .numOfDefinedPools  = NULL,
     .listDefinedPools   = NULL,
     .findPoolSources    = NULL,
     .poolLookupByName   = vboxStoragePoolLookupByName,

to

     .listPools          = vboxStorageListPools,
     .poolLookupByName   = vboxStoragePoolLookupByName,
2011-05-16 14:20:43 +01:00
..
libxl_conf.c libxl: support enabling the HPET 2011-05-10 16:38:30 -06:00
libxl_conf.h libxl: Convert to virDomainEventState 2011-05-13 10:48:32 -04:00
libxl_driver.c Convert all driver struct intializers to C99 style 2011-05-16 14:20:43 +01:00
libxl_driver.h List authors in copyright headers 2011-03-29 20:57:02 +08:00