summaryrefslogtreecommitdiffstats
path: root/tools/wixl/wix.vala
diff options
context:
space:
mode:
Diffstat (limited to 'tools/wixl/wix.vala')
-rw-r--r--tools/wixl/wix.vala19
1 files changed, 19 insertions, 0 deletions
diff --git a/tools/wixl/wix.vala b/tools/wixl/wix.vala
index 52ec667..717062b 100644
--- a/tools/wixl/wix.vala
+++ b/tools/wixl/wix.vala
@@ -63,6 +63,7 @@ namespace Wixl {
public abstract void visit_service_install (WixServiceInstall service_install, VisitState state) throws GLib.Error;
public abstract void visit_registry_search (WixRegistrySearch search) throws GLib.Error;
public abstract void visit_custom_action (WixCustomAction action) throws GLib.Error;
+ public abstract void visit_binary (WixBinary binary) throws GLib.Error;
}
public abstract class WixNode: Object {
@@ -912,12 +913,29 @@ namespace Wixl {
public string ExeCommand { get; set; }
public string Impersonate { get; set; }
public string Return { get; set; }
+ public string BinaryKey { get; set; }
+ public string DllEntry { get; set; }
+ public string HideTarget { get; set; }
public override void accept (WixNodeVisitor visitor) throws GLib.Error {
visitor.visit_custom_action (this);
}
}
+ public class WixBinary: WixElement {
+ static construct {
+ name = "Binary";
+ }
+
+ public string SourceFile { get; set; }
+
+ public File file;
+
+ public override void accept (WixNodeVisitor visitor) throws GLib.Error {
+ visitor.visit_binary (this);
+ }
+ }
+
public class WixProduct: WixElement {
static construct {
name = "Product";
@@ -938,6 +956,7 @@ namespace Wixl {
typeof (WixProperty),
typeof (WixUpgrade),
typeof (WixCustomAction),
+ typeof (WixBinary),
});
}