• 大小: 599KB
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2021-05-25
  • 语言: C/C++
  • 标签: 远程控制  vnc  c++  源码  

资源简介

VNC远程控制,用过都知道。。 没用过的,简单介绍一下: 1、远程登录 2、远程操作,观看 此工具乃代码review及监视极品工具。

资源截图

代码片段和文件信息

//  Copyright (C) 1999 AT&T Laboratories Cambridge. All Rights Reserved.
//
//  This file is part of the VNC system.
//
//  The VNC system is free software; you can redistribute it and/or modify
//  it under the terms of the GNU General Public License as published by
//  the Free Software Foundation; either version 2 of the License or
//  (at your option) any later version.
//
//  This program is distributed in the hope that it will be useful
//  but WITHOUT ANY WARRANTY; without even the implied warranty of
//  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
//  GNU General Public License for more details.
//
//  You should have received a copy of the GNU General Public License
//  along with this program; if not write to the Free Software
//  Foundation Inc. 59 Temple Place - Suite 330 Boston MA  02111-1307
//  USA.
//
// If the source code for the VNC system is not available from the place 
// whence you received this file check http://www.uk.research.att.com/vnc or contact
// the authors on vnc@uk.research.att.com for information on obtaining it.



#include “stdhdrs.h“
#include “vncviewer.h“

// Process the About dialog.
static LRESULT CALLBACK AboutDlgProc(HWND hwnd UINT iMsg 
   WPARAM wParam LPARAM lParam) {
switch (iMsg) {
case WM_INITDIALOG:
{
CentreWindow(hwnd);
return TRUE;
}
case WM_CLOSE:
EndDialog(hwnd TRUE);
return TRUE;
case WM_COMMAND:
if (LOWORD(wParam) == IDOK) {
EndDialog(hwnd TRUE);
}
}
return FALSE;
}

void ShowAboutBox()
{
int res = DialogBox(pApp->m_instance 
  DIALOG_MAKEINTRESOURCE(IDD_APP_ABOUT)
NULL (DLGPROC) AboutDlgProc);
}


 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     目录           0  2012-12-17 22:19  code\
     目录           0  2012-12-17 22:20  code\WinVNC\
     目录           0  2003-06-11 15:37  code\WinVNC\vncviewer\
     文件        1710  2001-03-19 15:58  code\WinVNC\vncviewer\AboutBox.cpp
     文件        1167  2001-03-19 15:58  code\WinVNC\vncviewer\AboutBox.h
     文件        2672  2001-03-19 15:58  code\WinVNC\vncviewer\AuthDialog.cpp
     文件        1347  2001-03-19 15:58  code\WinVNC\vncviewer\AuthDialog.h
     文件       61791  2001-03-19 15:58  code\WinVNC\vncviewer\ClientConnection.cpp
     文件       11245  2001-03-19 15:58  code\WinVNC\vncviewer\ClientConnection.h
     文件        4741  2001-03-19 15:58  code\WinVNC\vncviewer\ClientConnectionClipboard.cpp
     文件        1862  2001-03-19 15:58  code\WinVNC\vncviewer\ClientConnectioncopyRect.cpp
     文件        3480  2001-03-19 15:58  code\WinVNC\vncviewer\ClientConnectionCoRRE.cpp
     文件        4087  2001-03-19 15:58  code\WinVNC\vncviewer\ClientConnectionFile.cpp
     文件        4430  2001-03-19 15:58  code\WinVNC\vncviewer\ClientConnectionFullScreen.cpp
     文件        8010  2001-03-19 15:58  code\WinVNC\vncviewer\ClientConnectionHextile.cpp
     文件        2343  2001-03-19 15:58  code\WinVNC\vncviewer\ClientConnectionRaw.cpp
     文件        3427  2001-03-19 15:58  code\WinVNC\vncviewer\ClientConnectionRRE.cpp
     文件        1119  2001-03-19 15:58  code\WinVNC\vncviewer\COPYING.txt
     文件       18874  2001-03-19 15:58  code\WinVNC\vncviewer\d3des.c
     文件        1755  2001-03-19 15:58  code\WinVNC\vncviewer\d3des.h
     文件        7590  2001-03-19 15:58  code\WinVNC\vncviewer\Daemon.cpp
     文件        1542  2001-03-19 15:58  code\WinVNC\vncviewer\Daemon.h
     文件        2392  2001-03-19 15:58  code\WinVNC\vncviewer\Exception.cpp
     文件        2353  2001-03-19 15:58  code\WinVNC\vncviewer\Exception.h
     文件        8890  2001-03-19 15:58  code\WinVNC\vncviewer\Flasher.cpp
     文件        1764  2001-03-19 15:58  code\WinVNC\vncviewer\Flasher.h
     文件        4427  1999-04-12 19:24  code\WinVNC\vncviewer\fred
     文件        4784  2001-03-19 15:58  code\WinVNC\vncviewer\History.txt
     文件        8261  2001-03-19 15:58  code\WinVNC\vncviewer\KeyMap.cpp
     文件        2126  2001-03-19 15:58  code\WinVNC\vncviewer\KeyMap.h
     文件        3973  2001-03-19 15:58  code\WinVNC\vncviewer\keysymdef.h
............此处省略169个文件信息

评论

共有 条评论