VNCHooks.h
上传用户:sbftbdw
上传日期:2007-01-03
资源大小:379k
文件大小:2k
源码类别:

远程控制编程

开发平台:

Visual C++

  1. /////////////////////////////////////////////////////////////////////////////
  2. // RFB LIBRARY / VNC Hooks library
  3. //
  4. // WinVNC uses this DLL to hook into the system message pipeline, allowing it
  5. // to intercept messages which may be relevant to screen update strategy
  6. //
  7. // This library was originally created using MFC as RFBLib.dll, on
  8. // 8/8/97 WEZ
  9. //  Copyright (C) 1997, 1998 Olivetti & Oracle Research Laboratory
  10. //
  11. //  This file is part of the VNC system.
  12. //
  13. //  The VNC system is free software; you can redistribute it and/or modify
  14. //  it under the terms of the GNU General Public License as published by
  15. //  the Free Software Foundation; either version 2 of the License, or
  16. //  (at your option) any later version.
  17. //
  18. //  This program is distributed in the hope that it will be useful,
  19. //  but WITHOUT ANY WARRANTY; without even the implied warranty of
  20. //  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  21. //  GNU General Public License for more details.
  22. //
  23. //  You should have received a copy of the GNU General Public License
  24. //  along with this program; if not, write to the Free Software
  25. //  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307,
  26. //  USA.
  27. //
  28. // If the source code for the VNC system is not available from the place 
  29. // whence you received this file, check http://www.orl.co.uk/vnc or contact
  30. // the authors on vnc@orl.co.uk for information on obtaining it.
  31. // VNC Hooks library
  32. //
  33. // This version created:
  34. // 24/11/97
  35. #if !defined(_VNCHOOKS_DLL_)
  36. #define _VNCHOOKS_DLL_
  37. #include <windows.h>
  38. /////////////////////////////////////////////////////////////////////////////
  39. // Define the import/export tags
  40. #define DllImport __declspec(dllimport)
  41. #define DllExport __declspec(dllexport)
  42. /////////////////////////////////////////////////////////////////////////////
  43. //
  44. // Functions used by WinVNC
  45. extern "C"
  46. {
  47. // DLL functions:
  48. DllExport BOOL SetHook(
  49. HWND hWnd,
  50. UINT UpdateMsg,
  51. UINT CopyMsg,
  52. UINT MouseMsg
  53. ); // Set the hook
  54. DllExport BOOL UnSetHook(HWND hWnd); // Remove it
  55. }
  56. #endif // !defined(_VNCHOOKS_DLL_)