]> git.ipfire.org Git - thirdparty/open-vm-tools.git/commitdiff
unity: remove references to the old "guest dict".
authorVMware, Inc <>
Sat, 28 May 2011 19:39:35 +0000 (12:39 -0700)
committerMarcelo Vanzin <mvanzin@vmware.com>
Sat, 28 May 2011 19:39:35 +0000 (12:39 -0700)
Signed-off-by: Marcelo Vanzin <mvanzin@vmware.com>
open-vm-tools/services/plugins/unity/unityPlugin.cpp
open-vm-tools/services/plugins/unity/unitylib/unity.c
open-vm-tools/services/plugins/unity/unitylib/unity.h

index af47d36ae92cb13730925ba79d80ca87ba6611a2..8a50555036cf60cb0bd971eeb63b8d93c5c10366 100644 (file)
@@ -127,7 +127,7 @@ UnityPlugin::Initialize(ToolsAppCtx *ctx)       // IN: Host application context.
    }
    unityHostCallbacks.updateCbCtx = mUnityUpdateChannel;
 
-   Unity_Init(NULL, unityHostCallbacks, ctx->serviceObj);
+   Unity_Init(unityHostCallbacks, ctx->serviceObj);
 
    GHITcloInit();
    GHIHostCallbacks ghiHostCallbacks;
index 6f2ef74ea10b0796affa61baa6eec2e67b6646a9..a3dcb2403a40358f9f5965146a00bf138dd7a1c1 100644 (file)
@@ -202,8 +202,7 @@ Unity_IsActive(void)
  */
 
 void
-Unity_Init(GuestApp_Dict *conf,                                    // IN
-           UnityHostCallbacks hostCallbacks,                       // IN
+Unity_Init(UnityHostCallbacks hostCallbacks,                       // IN
            gpointer serviceObj)                                    // IN
 {
    Debug("Unity_Init\n");
index da0d1ce87e5b96fcbce2fcc1d93ef41ed6ed545c..26c6f0585ba71a53f1f119666f5799fd314ad532 100644 (file)
@@ -29,7 +29,6 @@
 #include <string.h>
 #include "dndGuest.h"
 #include "dbllnklst.h"
-#include "guestApp.h"
 #include "dynbuf.h"
 #include "str.h"
 #ifdef _WIN32
@@ -150,8 +149,7 @@ typedef struct UnityHostCallbacks {
 extern "C" {
 #endif // __cplusplus
 
-void Unity_Init(GuestApp_Dict *conf,
-                UnityHostCallbacks hostCallbacks,
+void Unity_Init(UnityHostCallbacks hostCallbacks,
                 gpointer serviceObj);
 Bool Unity_IsActive(void);
 Bool Unity_IsSupported(void);