From: VMware, Inc <> Date: Thu, 18 Nov 2010 21:59:51 +0000 (-0800) Subject: Changes in shared code that don't affect open-vm-tools functionality. X-Git-Tag: 2010.11.17-327185~49 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=8cb0825b8ff25eff7b79fd08bb8a14f933b81ec7;p=thirdparty%2Fopen-vm-tools.git Changes in shared code that don't affect open-vm-tools functionality. Signed-off-by: Marcelo Vanzin --- diff --git a/open-vm-tools/lib/include/vmware/tools/plugin.h b/open-vm-tools/lib/include/vmware/tools/plugin.h index 9f8ea95cd..9bcb0737c 100644 --- a/open-vm-tools/lib/include/vmware/tools/plugin.h +++ b/open-vm-tools/lib/include/vmware/tools/plugin.h @@ -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;