mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2025-03-07 17:28:15 +00:00
conf: create a thin wrapper above virDomainDefPostParse
Rename the original function to virDomainDefPostParseInternal to allow adding arguments that will be only used by the internal version.
This commit is contained in:
parent
c4480eef08
commit
4b759a4041
@ -4856,8 +4856,8 @@ virDomainDefPostParseCheckFailure(virDomainDefPtr def,
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
int
|
static int
|
||||||
virDomainDefPostParse(virDomainDefPtr def,
|
virDomainDefPostParseInternal(virDomainDefPtr def,
|
||||||
virCapsPtr caps,
|
virCapsPtr caps,
|
||||||
unsigned int parseFlags,
|
unsigned int parseFlags,
|
||||||
virDomainXMLOptionPtr xmlopt,
|
virDomainXMLOptionPtr xmlopt,
|
||||||
@ -4944,6 +4944,18 @@ virDomainDefPostParse(virDomainDefPtr def,
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
int
|
||||||
|
virDomainDefPostParse(virDomainDefPtr def,
|
||||||
|
virCapsPtr caps,
|
||||||
|
unsigned int parseFlags,
|
||||||
|
virDomainXMLOptionPtr xmlopt,
|
||||||
|
void *parseOpaque)
|
||||||
|
{
|
||||||
|
return virDomainDefPostParseInternal(def, caps, parseFlags, xmlopt,
|
||||||
|
parseOpaque);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* virDomainDiskAddressDiskBusCompatibility:
|
* virDomainDiskAddressDiskBusCompatibility:
|
||||||
* @bus: disk bus type
|
* @bus: disk bus type
|
||||||
|
Loading…
x
Reference in New Issue
Block a user