/* * Copyright 2000, International Business Machines Corporation and others. * All Rights Reserved. * * This software has been released under the terms of the IBM Public * License. For details, see the LICENSE file in the top-level source * directory or online at http://www.openafs.org/dl/license10.html */ #ifndef __GUI2FS_H__ #define __GUI2FS_H__ #include "volume_inf.h" void Flush(const CStringArray& files); void FlushVolume(const CStringArray& files); void WSCellCmd(); void WhichCell(CStringArray& files); BOOL CheckVolumes(); void SetCacheSize(LONG nNewCacheSize); void RemoveMountCmd(const CStringArray& files); void WhereIs(CStringArray& files); CString GetAfsError(int code, const char *filename = 0); void CleanACL(CStringArray& names); BOOL GetRights(const CString& strDir, CStringArray& strNormal, CStringArray& strNegative); BOOL SaveACL(const CString& strCellName, const CString& strDir, const CStringArray& normal, const CStringArray& negative); BOOL CopyACL(const CString& strToDir, const CStringArray& normal, const CStringArray& negative, BOOL bClear); BOOL ListMount(CStringArray& files); BOOL MakeMount(const CString& strDir, const CString& strVolName, const CString& strCellName, BOOL bRW); BOOL RemoveMount(CStringArray& files); BOOL RemoveSymlink(const char *); BOOL GetVolumeInfo(CString strFile, CVolInfo& volInfo); BOOL SetVolInfo(CVolInfo& volInfo); enum WHICH_CELLS { LOCAL_CELL = 0, SPECIFIC_CELL = 1, ALL_CELLS = 2 }; BOOL CheckServers(const CString& strCellName, WHICH_CELLS nCellsToCheck, BOOL bFast); BOOL GetTokenInfo(CStringArray& tokenInfo); BOOL IsPathInAfs(const CHAR *strPath); int GetCellName(char *baseNamep, struct afsconf_cell *infop); long fs_StripDriveLetter(const char *inPathp, char *outPathp, long outSize); long fs_ExtractDriveLetter(const char *inPathp, char *outPathp); BOOL IsSymlink(const char * true_name); UINT MakeSymbolicLink(const char *,const char *); void ListSymbolicLinkPath(const char *strName,char *strPath,UINT nlenPath); #endif //__GUI2FS_H__