登录
首页 » Windows开发 » Win2K under the Sniffer source code. Zip

Win2K under the Sniffer source code. Zip

于 2023-06-25 发布 文件大小:128.04 kB
0 1041
下载积分: 2 下载次数: 1

代码说明:

Win2K下的Sniffer源代码.zip-Win2K under the Sniffer source code. Zip

下载说明:请别用迅雷下载,失败请重下,重下不扣分!

发表评论

0 个回复

  • 多媒体播放器示例 VB实现 多种媒体文件的播放
    多媒体播放器示例 VB实现 多种媒体文件的播放-multimedia players Example VB variety of media players
    2022-01-25 19:52:59下载
    积分:1
  • 5请认真阅读您的文件包然后写出其具体功能(至少要20个字)。尽量不要让站长把时间都花费在为您修正说明上。压缩包解压时不能有密码。系统会自动删除debug和rel...
    5请认真阅读您的文件包然后写出其具体功能(至少要20个字)。尽量不要让站长把时间都花费在为您修正说明上。压缩包解压时不能有密码。系统会自动删除debug和release目录,所以请不要将文件放在这两个目录下
    2022-08-19 21:32:41下载
    积分:1
  • win用简易日志软件
    简易日志显示软件。 支持显示日志、保存日志到文件、udp方式接收日志,支持显示日志网络来源。 本地调用:任何win软件使用如下函数,即可向该软件发送日志数据,日志软件会显示并保存到指定文件中。 int WriteLog(DWORD LogType, char* lpszFormat, ...) { static HWND m_hWndLog = NULL; if (m_hWndLog == NULL) { m_hWndLog = ::FindWindowA(NULL, "Stk1Log"); if (m_hWndLog == NULL) { char cCurPath[MAX_PATH]; if (GetCurrentDirectoryA(MAX_PATH, cCurPath) > 0) { char cExePath[MAX_PATH]; wsprintfA(cExePath, "%sstk1Log.exe", cCurPath); WinExec(cExePath, SW_SHOW); m_hWndLog = ::FindWindowA(NULL, "Stk1Log"); if (m_hWndLog == NULL) { // AfxMessageBox("无法找到Stk1Log.exe用于显示日志!"); return -1; } } } } else { if (IsWindow(m_hWndLog) == FALSE) { m_hWndLog = NULL; m_hWndLog = ::FindWindowA(NULL, "Stk1Log"); if (m_hWnd
    2022-07-25 17:36:54下载
    积分:1
  • 这是一个很好的unicode编码的源代码,值得一看。
    这是一个很好的unicode编码的源代码,值得一看。-This is a good coding unicode source overseas.
    2023-03-27 23:55:04下载
    积分:1
  • 程序下方状态栏中记录了鼠标的位置。随着鼠标的移动,下方的数字不断变化,起到了“鼠标追踪”的效果。
    程序下方状态栏中记录了鼠标的位置。随着鼠标的移动,下方的数字不断变化,起到了“鼠标追踪”的效果。-Procedures recorded in the status bar below the location of the mouse. With the mouse move, the bottom of the figures are constantly changing, and played a
    2022-03-22 06:31:41下载
    积分:1
  • 局域网文件传输 为了设计统一和用户操作方便,我们希望将服务端与客户端融合在一起,形成一个程序,这样用户理解起来,更加直观一点(其实这样做也是为了方便调试,大...
    局域网文件传输 为了设计统一和用户操作方便,我们希望将服务端与客户端融合在一起,形成一个程序,这样用户理解起来,更加直观一点(其实这样做也是为了方便调试,大家可以在本机上测试,自己传文件给自己)。所以,我们在程序中需要使用两个Winsock控件,一个负责监听,一个负责发送,当发送端连接成功以后,便选择一个待发送的文件(可以是任意二进制文件),接着将文件名和文件字节长度发送给接收端,接收端收到这个消息以后,将文件名和文件长度解析出来,然后通知发送端可以开始发送文件;发送端读到这个消息之后,将文件流以字节的形式发送到接收端,接收端收到后,将二进制流回写,保存成文件即可。这里要注意两点,一个是由于Winsock每次最大传输8K的内容,所以需要将文件分解,每次传输固定数目的字节流,这样发送和接收时都可以根据这个数目来判断文件传输的进程,一旦字节流数目等于文件的大小,就需要关闭相应的文件句柄;另一点是由于我只使用一个Winsock控件接收,接收文本时需要注意要将UNICODE转码,解析成可识别的信息。 -LAN file transfer to uniform design and user convenience, we hope it will end service and client together and form a process so that users understand, a more intuitive 1:00 (in fact, do so in order to facilitate debugging, you can test the machine, its own text- items for himself). Therefore, we need procedures in the use of two Winsock Control, a charge of wiretapping, a charge of this, when the transmitter connects successfully, it will be a choice to send the document (can be arbitrary binary files), will then file names and the
    2022-04-14 22:25:12下载
    积分:1
  • 一个模仿Windows7桌面平台的源代码~写得好的画可以替代windows的桌面。集成了背景切换,右键换背景 目前只能换1次 (偷懒了点没写循环更换)。双击关闭...
    一个模仿Windows7桌面平台的源代码~写得好的画可以替代windows的桌面。集成了背景切换,右键换背景 目前只能换1次 (偷懒了点没写循环更换)。双击关闭。支持图标透明,其中里面有个真正的透明通道控件――存在于Arone中。Arone中每个Item都是一个单独的控件。背景是在Form中,控件跟背景是透明融合。作者vIstaswx本来打算再写写去参赛的,结果先放给了本站,呵呵,再次感谢这个对GDI+技术高超的孩子。-An imitation of the source code for desktop platform Windows7 ~ write a good painting can replace the windows desktop. Integration of the background to switch, right-for the background is currently only available for a time (a point I did not write cycles lazy replacement). Double-click Close. Support icons transparent, inside of which there is a genuine and transparent access control- exist in Arone in. Arone Each Item is a separate control. Background is in the Form, the control integration with the background is transparent. By vIstaswx originally intend to write to the competition, the results of the first release to the site, Oh, once again thank the pairs of GDI+ highly skilled children.
    2023-08-03 13:50:05下载
    积分:1
  • 在VC集成环境下,编译,连接成可执行文件,在源码所在目录下,拷贝6个文本文件(名字为1.txt,2.txt,3.txt,4.txt,5.txt,6.txt,文本...
    在VC集成环境下,编译,连接成可执行文件,在源码所在目录下,拷贝6个文本文件(名字为1.txt,2.txt,3.txt,4.txt,5.txt,6.txt,文本文件的内容是英文),运行即可进行练习。-in vc integration,translate and edit,and connect program to executable file
    2022-09-14 00:10:03下载
    积分:1
  • 这是一个简单的C语言,一个漂亮的界面,应用程序可以快速提高…
    这是一个C语言的简单、可观的一个界面,应用它能够快速的提高我们的编程水平-This is a simple C language, a handsome interface, applications can quickly improve our level of programming
    2022-02-06 17:20:21下载
    积分:1
  • text jitter
    文本抖动-text jitter
    2022-01-28 16:10:04下载
    积分:1
  • 696516资源总数
  • 106914会员总数
  • 0今日下载