📄 cpgpdiskinterfaceerrors.cpp
字号:
//////////////////////////////////////////////////////////////////////////////
// CPGPdiskInterfaceErrors.cpp
//
// Error handling functions.
//////////////////////////////////////////////////////////////////////////////
// $Id: CPGPdiskInterfaceErrors.cpp,v 1.4 1999/03/31 23:51:07 nryan Exp $
// Copyright (C) 1998 by Network Associates, Inc.
// All rights reserved.
#define __w64
#include <vdw.h>
#include "Required.h"
#include "DualErr.h"
#include "StringAssociation.h"
#include "UtilityFunctions.h"
#include "CPGPdiskInterface.h"
#include "CPGPdiskInterfaceErrors.h"
#include "Globals.h"
#include "KernelModeUtils.h"
#include "msglog.h"
///////////
// Constant
///////////
const LPCSTR kPGPdiskKernelErrString =
"Error code is (%d, %d, %d)";
///////////////////////////
// Error handling functions
///////////////////////////
// ReportError reports certain errors to the global event log..
void
CPGPdiskInterface::ReportError(
PGDMajorError perr,
DualErr derr,
PGPUInt8 drive)
{
static char errString[kMaxStringSize];
KErrorLogEntry errEntry;
KUstring uniErrString;
PIO_ERROR_LOG_PACKET pErrPacket;
static PGPUInt32 uniqueCode = 0;
pErrPacket = errEntry;
// Prepare the error log entry.
pErrPacket->FinalStatus = STATUS_SUCCESS;
pErrPacket->ErrorCode = PGPDISK_ERROR_CODE;
pErrPacket->UniqueErrorValue = uniqueCode++;
// Prepare the error string and post it.
sprintf(errString, kPGPdiskKernelErrString, (PGPUInt32) perr,
(PGPUInt32) derr.mMinorError, derr.mExternalError);
if (AssignToUni(&uniErrString, errString).IsntError())
{
errEntry.InsertString(uniErrString.UnicodeString().Buffer);
errEntry.Post();
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -