lib/file/Makefile \
lib/foundryMsg/Makefile \
lib/ghIntegration/Makefile \
- lib/ghIntegrationStub/Makefile \
lib/guestApp/Makefile \
lib/guestRpc/Makefile \
lib/hgfs/Makefile \
SUBDIRS += eventManager
SUBDIRS += file
SUBDIRS += foundryMsg
-SUBDIRS += ghIntegrationStub
SUBDIRS += guestApp
SUBDIRS += hgfs
SUBDIRS += hgfsBd
+++ /dev/null
-################################################################################
-### Copyright 2008 VMware, Inc. All rights reserved.
-###
-### This program is free software; you can redistribute it and/or modify
-### it under the terms of version 2 of the GNU General Public License as
-### published by the Free Software Foundation.
-###
-### This program is distributed in the hope that it will be useful,
-### but WITHOUT ANY WARRANTY; without even the implied warranty of
-### MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-### GNU General Public License for more details.
-###
-### You should have received a copy of the GNU General Public License
-### along with this program; if not, write to the Free Software
-### Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
-################################################################################
-
-noinst_LTLIBRARIES = libGhIntegrationStub.la
-
-libGhIntegrationStub_la_SOURCES =
-libGhIntegrationStub_la_SOURCES += ghIntegrationStub.c
-
+++ /dev/null
-/*********************************************************
- * Copyright (C) 2010 VMware, Inc. All rights reserved.
- *
- * This program is free software; you can redistribute it and/or modify it
- * under the terms of the GNU Lesser General Public License as published
- * by the Free Software Foundation version 2.1 and no later version.
- *
- * This program is distributed in the hope that it will be useful, but
- * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
- * or FITNESS FOR A PARTICULAR PURPOSE. See the Lesser GNU General Public
- * License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public License
- * along with this program; if not, write to the Free Software Foundation, Inc.,
- * 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
- *
- *********************************************************/
-
-/*
- * ghIntegrationStub.c --
- *
- * Guest host integration functions.
- */
-
-#include "vmware.h"
-#include "ghIntegration.h"
-
-void
-GHI_Init(void *ctx)
-{
-}
-
-void
-GHI_Cleanup(void)
-{
-}
-
-void
-GHI_RegisterCaps(void)
-{
-}
-
-void
-GHI_UnregisterCaps(void)
-{
-}
+++ /dev/null
-################################################################################
-### Copyright 2008 VMware, Inc. All rights reserved.
-###
-### This program is free software; you can redistribute it and/or modify
-### it under the terms of version 2 of the GNU General Public License as
-### published by the Free Software Foundation.
-###
-### This program is distributed in the hope that it will be useful,
-### but WITHOUT ANY WARRANTY; without even the implied warranty of
-### MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-### GNU General Public License for more details.
-###
-### You should have received a copy of the GNU General Public License
-### along with this program; if not, write to the Free Software
-### Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
-################################################################################
-
-noinst_LTLIBRARIES = libUnityStub.la
-
-libUnityStub_la_SOURCES =
-libUnityStub_la_SOURCES += unityStub.c
-
-AM_CFLAGS = @GTK_CPPFLAGS@
-
+++ /dev/null
-/*********************************************************
- * Copyright (C) 2006 VMware, Inc. All rights reserved.
- *
- * This program is free software; you can redistribute it and/or modify it
- * under the terms of the GNU Lesser General Public License as published
- * by the Free Software Foundation version 2.1 and no later version.
- *
- * This program is distributed in the hope that it will be useful, but
- * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
- * or FITNESS FOR A PARTICULAR PURPOSE. See the Lesser GNU General Public
- * License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public License
- * along with this program; if not, write to the Free Software Foundation, Inc.,
- * 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
- *
- *********************************************************/
-
-/*
- * UnityStub.c --
- *
- * Unity functions.
- */
-
-#include "rpcin.h"
-#include "guestApp.h"
-#include "unity.h"
-
-/*
- *-----------------------------------------------------------------------------
- *
- * Unity_Init --
- *
- * One time initialization stuff.
- *
- * Results:
- * None.
- *
- * Side effects:
- * None.
- *
- *-----------------------------------------------------------------------------
- */
-
-void
-Unity_Init(GuestApp_Dict *conf,
- int *blockingWndList,
- DesktopSwitchCallbackManager *desktopSwitchCallbackMgr)
-{
-}
-
-Bool
-Unity_IsSupported(void)
-{
- return FALSE;
-}
-
-void
-Unity_SetActiveDnDDetWnd(UnityDnD *state)
-{
-}
-
-void
-Unity_Exit(void)
-{
-}
-
-void
-Unity_Cleanup(void)
-{
-}
-
-void
-Unity_RegisterCaps(void)
-{
-}
-
-void
-Unity_UnregisterCaps(void)
-{
-}