You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
63 lines
681 B
63 lines
681 B
/*++
|
|
|
|
Copyright (c) 2001 Microsoft Corporation
|
|
|
|
Module Name:
|
|
|
|
iohandler.cpp
|
|
|
|
Abstract:
|
|
|
|
This module implements the base IoHandler class.
|
|
|
|
Author:
|
|
|
|
Brian Guarraci (briangu), 2001
|
|
|
|
Revision History:
|
|
|
|
--*/
|
|
#include "iohandler.h"
|
|
|
|
CIoHandler::CIoHandler(
|
|
VOID
|
|
)
|
|
/*++
|
|
|
|
Routine Description:
|
|
|
|
IoHandler constructor
|
|
|
|
Arguments:
|
|
|
|
None
|
|
|
|
Return Value:
|
|
|
|
N/A
|
|
|
|
--*/
|
|
{
|
|
NOTHING;
|
|
}
|
|
|
|
CIoHandler::~CIoHandler()
|
|
/*++
|
|
|
|
Routine Description:
|
|
|
|
IoHandler destructor
|
|
|
|
Arguments:
|
|
|
|
N/A
|
|
|
|
Return Value:
|
|
|
|
N/A
|
|
|
|
--*/
|
|
{
|
|
NOTHING;
|
|
}
|
|
|