#define RANK_hgfsSearchArrayLock (RANK_libLockBase + 0x4060)
#define RANK_hgfsNodeArrayLock (RANK_libLockBase + 0x4070)
-/*
- * SLPv2 global lock
- */
-#define RANK_slpv2GlobalLock (RANK_libLockBase + 0x4305)
-
/*
* vigor (must be < VMDB range and < disklib, see bug 741290)
*/
#include "vmware_pack_end.h"
VixCommandGenericRequest;
-
-/*
- * These are values we use to discover hosts and guests through SLPv2.
- */
-#define VIX_SLPV2_SERVICE_NAME_TOOLS_SERVICE "VMware_Vix_Tools"
-#define VIX_SLPV2_PROPERTY_IP_ADDR "IP"
-#define VIX_SLPV2_PROPERTY_MAC_ADDR "Mac"
-
/*
* The security classifications for async op types/op code. Each op code
* is given a security category, and the VMX uses that category to determine
# if defined VMX86_DESKTOP
/*
* Fusion can be relocated, so it does not have a default library directory.
- * To retrieve the Fusion library directory, use Location_GetLibrary() instead.
+ * To retrieve the Fusion library directory, use Location_Get("libDir") instead.
*/
# define DEFAULT_LIBDIRECTORY \
"/dev/null/Non-existing DEFAULT_LIBDIRECTORY"
} else {
/* Use a default ICU data dir. */
# if defined __APPLE__
- Location_GetLibrary_Type *Location_GetLibrary =
- Location_GetLibrary_Addr();
+ Location_Get_Type *Location_Get = Location_Get_Addr();
- if (Location_GetLibrary) {
- char *libDir = Location_GetLibrary();
+ if (Location_Get) {
+ char *libDir = Location_Get("libDir");
Bool success = libDir
&& DynBuf_Append(&dbpath, libDir, strlen(libDir));