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.

60 lines
1019 B

  1. //***************************************************************************
  2. //
  3. // File:
  4. //
  5. // Module: MS SNMP Provider
  6. //
  7. // Purpose:
  8. //
  9. // Copyright (c) 1997-2001 Microsoft Corporation, All Rights Reserved
  10. //
  11. //***************************************************************************
  12. /*---------------------------------------------------------
  13. Filename: pseudo.cpp
  14. Written By: B.Rajeev
  15. ----------------------------------------------------------*/
  16. #include "precomp.h"
  17. #include "common.h"
  18. #include "pseudo.h"
  19. #include "fs_reg.h"
  20. #include "ophelp.h"
  21. #include "op.h"
  22. LONG_PTR OperationWindow::HandleEvent (
  23. HWND hWnd,
  24. UINT user_msg_id,
  25. WPARAM wParam,
  26. LPARAM lParam
  27. )
  28. {
  29. return owner.ProcessInternalEvent(
  30. hWnd,
  31. user_msg_id,
  32. wParam,
  33. lParam
  34. );
  35. }
  36. OperationWindow::OperationWindow (
  37. IN SnmpOperation &owner
  38. ) : owner(owner)
  39. {
  40. }
  41. OperationWindow ::~OperationWindow ()
  42. {
  43. }