Leaked source code of windows server 2003
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.
 
 
 
 
 
 

36 lines
876 B

//#--------------------------------------------------------------
//
// File: processor.h
//
// Synopsis: This file holds the declarations of the
// CProcessor class
//
//
// History: 9/23/97 MKarki Created
//
// Copyright (C) 1997-98 Microsoft Corporation
// All rights reserved.
//
//----------------------------------------------------------------
#ifndef _PROCESSOR_H_
#define _PROCESSOR_H_
#include "packetradius.h"
class CProcessor
{
public:
virtual BOOL ProcessOutPacket (
/*[in]*/ CPacketRadius *pCPacketRadius
)=0;
virtual BOOL ProcessInPacket (
/*[in]*/ CPacketRadius *pCPacketRadius
)=0;
CProcessor();
virtual ~CProcessor();
};
#endif // ifndef _PROCESSOR_H_