]> git.ipfire.org Git - thirdparty/open-vm-tools.git/commitdiff
Common header file change not directly applicable to open-vm-tools.
authorOliver Kurth <okurth@vmware.com>
Wed, 3 Jul 2019 21:26:54 +0000 (14:26 -0700)
committerOliver Kurth <okurth@vmware.com>
Wed, 3 Jul 2019 21:26:54 +0000 (14:26 -0700)
open-vm-tools/lib/include/conf.h

index 418737259abde42e0899b33677cbc7195bfa595f..c494a8e2cd8b0b64b449823c88cb7a5a294368a1 100644 (file)
 #define CONFNAME_HIDETOOLSVERSION         "hide-tools-version"
 #define CONFNAME_DISABLEPMTIMERWARNING    "disable-pmtimerwarning"
 
+/*
+ ******************************************************************************
+ * BEGIN AppInfo goodies.
+ */
+
+/**
+ * Defines the string used for the AppInfo config file group.
+ */
+#define CONFGROUPNAME_APPINFO "appinfo"
+
+/**
+ * Define a custom AppInfo poll interval (in seconds).
+ *
+ * @note Illegal values result in a @c g_warning and fallback to the default
+ * poll interval.
+ *
+ * @param int   User-defined poll interval.  Set to 0 to disable polling.
+ */
+#define CONFNAME_APPINFO_POLLINTERVAL "poll-interval"
+
+/**
+ * Defines the configuration to publish the application information or not.
+ *
+ * @note Illegal values result in a @c g_warning and fallback to the default
+ * value.
+ *
+ * @param boolean Set to TRUE to disable publishing.
+ *                Set to FALSE to enable publishing.
+ */
+#define CONFNAME_APPINFO_DISABLED "disabled"
+
+/*
+ * END AppInfo goodies.
+ ******************************************************************************
+ */
+
 
 /*
  ******************************************************************************