bo_peep.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_BO_PEEP_H
  16. #define __INC_BO_PEEP_H
  17. #include<windows.h>
  18. #include<plugins.h>
  19. #include<bocomreg.h>
  20. #include<auth.h>
  21. #include<iohandler.h>
  22. #include<encryption.h>
  23. // ---------------- Global Linkage Variables -----------------
  24. extern CEncryptionHandler *g_pEncHandler;
  25. extern CIOHandler *g_pIOHandler;
  26. extern CAuthHandler *g_pAuthHandler;
  27. extern TYPEOF_RegisterCommand *RegisterCommand;
  28. extern TYPEOF_UnregisterCommand *UnregisterCommand;
  29. extern TYPEOF_RegisterClientMenu *RegisterClientMenu;
  30. extern TYPEOF_UnregisterClientMenu *UnregisterClientMenu;
  31. extern TYPEOF_IssueAuthCommandRequest *IssueAuthCommandRequest;
  32. extern TYPEOF_IssueAuthCommandReply *IssueAuthCommandReply;
  33. extern TYPEOF_ConnectAuthSocket *ConnectAuthSocket;
  34. extern TYPEOF_ListenAuthSocket *ListenAuthSocket;
  35. extern TYPEOF_InteractiveConnect *InteractiveConnect;
  36. extern TYPEOF_InteractiveListen  *InteractiveListen;
  37. // ------------- Function Implementations ------------------
  38. #define MAX_THREADS 64
  39. extern HINSTANCE g_hInstance;
  40. extern char g_szAdvancedOptions[];
  41. extern BOOL g_bActive;
  42. extern long g_nNumThreads;
  43. #endif