volfile.h
来自「vc环境下的pgp源码」· C头文件 代码 · 共 43 行
H
43 行
//////////////////////////////////////////////////////////////////////////////
// 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 + =
减小字号Ctrl + -
显示快捷键?