📄 volfile.h
字号:
//////////////////////////////////////////////////////////////////////////////
// VolFile.h
//
// Declaration of class VolFile.
//////////////////////////////////////////////////////////////////////////////
// $Id: VolFile.h,v 1.4 1998/12/14 18:58:53 nryan Exp $
// Copyright (C) 1998 by Network Associates, Inc.
// All rights reserved.
#ifndef Included_VolFile_h // [
#define Included_VolFile_h
#include "DualErr.h"
#include "File.h"
#include "Volume.h"
////////////////
// Class VolFile
////////////////
// Class VolFile represents volume files.
class VolFile : public Volume, public File
{
public:
DualErr mInitErr;
VolFile(LPCSTR path = NULL, PGPUInt8 drive = kInvalidDrive);
~VolFile() { };
DualErr Mount(LPCSTR path, PGPUInt8 drive = kInvalidDrive,
PGPBoolean mountReadOnly = FALSE,
PAD_Mount useThisPMNT = NULL);
DualErr Unmount(PGPBoolean isThisEmergency = FALSE,
PAD_Unmount useThisPUNMNT = NULL);
};
#endif // ] Included_VolFile_h
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -