coremacosx.h

来自「Free open-source disk encryption softwar」· C头文件 代码 · 共 36 行

H
36
字号
/* Copyright (c) 2008 TrueCrypt Foundation. All rights reserved. Governed by the TrueCrypt License 2.5 the full text of which is contained in the file License.txt included in TrueCrypt binary and source code distribution packages.*/#ifndef TC_HEADER_Core_CoreMacOSX#define TC_HEADER_Core_CoreMacOSX#include "System.h"#include "Core/Unix/FreeBSD/CoreFreeBSD.h"namespace TrueCrypt{	class CoreMacOSX : public CoreFreeBSD	{	public:		CoreMacOSX ();		virtual ~CoreMacOSX ();		virtual shared_ptr <VolumeInfo> DismountVolume (shared_ptr <VolumeInfo> mountedVolume, bool ignoreOpenFiles = false, bool syncVolumeInfo = false);		virtual string GetDefaultMountPointPrefix () const { return "/Volumes/truecrypt"; }	protected:		virtual void MountAuxVolumeImage (const DirectoryPath &auxMountPoint, const MountOptions &options) const;	private:		CoreMacOSX (const CoreMacOSX &);		CoreMacOSX &operator= (const CoreMacOSX &);	};}#endif // TC_HEADER_Core_CoreMacOSX

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?