]> git.ipfire.org Git - thirdparty/open-vm-tools.git/commitdiff
Changes in shared code that don't affect open-vm-tools functionality.
authorVMware, Inc <>
Thu, 18 Nov 2010 21:59:51 +0000 (13:59 -0800)
committerMarcelo Vanzin <mvanzin@vmware.com>
Thu, 18 Nov 2010 21:59:51 +0000 (13:59 -0800)
Signed-off-by: Marcelo Vanzin <mvanzin@vmware.com>
open-vm-tools/lib/include/vmware/tools/plugin.h

index 9f8ea95cdd19ad700c301d0270799d1b303bc163..9bcb0737ca324938df8994822c0f2126484d2ab0 100644 (file)
@@ -327,6 +327,26 @@ typedef enum {
     * types (that other plugins can hook into).
     */
    TOOLS_APP_PROVIDER   = 3,
+
+   /* VMCF applications. */
+
+   /**
+    * Denotes a raw VMCF object handler. See the VMCFObjectProvider struct.
+    */
+   TOOLS_VMCF_OBJECT       = 0x00010001,
+   /**
+    * Denotes a VMCF signal handler. See the VMCFSignalHandler struct.
+    */
+   TOOLS_VMCF_SIGNAL       = 0x00010002,
+   /**
+    * Denotes a VOLT object registration. See the VMCFVoltObject struct.
+    */
+   TOOLS_VMCF_VOLT_OBJECT  = 0x00010003,
+   /**
+    * Denotes a VOLT signal registration. See the VMCFVoltSignal struct.
+    */
+   TOOLS_VMCF_VOLT_SIGNAL  = 0x00010004,
+
 } ToolsAppType;