From: VMware, Inc <> Date: Mon, 26 Apr 2010 17:38:27 +0000 (-0700) Subject: Vmfs_IsVMFSFile and Vmfs_IsVMFSDir go bye-bye X-Git-Tag: 2010.04.25-253928~65 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=79d64f6d9eaa7f7e53f8c4c57b0da2dbfc57de11;p=thirdparty%2Fopen-vm-tools.git Vmfs_IsVMFSFile and Vmfs_IsVMFSDir go bye-bye Use HostType_OSIsVMK instead... Signed-off-by: Marcelo Vanzin --- diff --git a/open-vm-tools/lib/include/vmfs.h b/open-vm-tools/lib/include/vmfs.h index 937b9bf69..c2a1f91dc 100644 --- a/open-vm-tools/lib/include/vmfs.h +++ b/open-vm-tools/lib/include/vmfs.h @@ -99,21 +99,6 @@ typedef enum { #if defined(VMX86_SERVER) char *Vmfs_GetCOSFileName(const char *vmfsFile); -Bool Vmfs_IsVMFSDir(ConstUnicode dir); -Bool Vmfs_IsVMFSFile(ConstUnicode pathName); -#else - -static INLINE Bool -Vmfs_IsVMFSDir(ConstUnicode dir) -{ - return FALSE; -} - -static INLINE Bool -Vmfs_IsVMFSFile(ConstUnicode pathName) -{ - return FALSE; -} #endif /* VM86_SERVER */ #endif /* __VMFS_H__ */