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

  1. //#--------------------------------------------------------------
  2. //
  3. // File: processor.h
  4. //
  5. // Synopsis: This file holds the declarations of the
  6. // CProcessor class
  7. //
  8. //
  9. // History: 9/23/97 MKarki Created
  10. //
  11. // Copyright (C) 1997-98 Microsoft Corporation
  12. // All rights reserved.
  13. //
  14. //----------------------------------------------------------------
  15. #ifndef _PROCESSOR_H_
  16. #define _PROCESSOR_H_
  17. #include "packetradius.h"
  18. class CProcessor
  19. {
  20. public:
  21. virtual BOOL ProcessOutPacket (
  22. /*[in]*/ CPacketRadius *pCPacketRadius
  23. )=0;
  24. virtual BOOL ProcessInPacket (
  25. /*[in]*/ CPacketRadius *pCPacketRadius
  26. )=0;
  27. CProcessor();
  28. virtual ~CProcessor();
  29. };
  30. #endif // ifndef _PROCESSOR_H_