-
关于c的一些经典程序,应该是很有用的。希望对初学者有用!...
关于c的一些经典程序,应该是很有用的。希望对初学者有用!-With regard to c some of the classic procedure, it should be very useful. Hope useful for beginners!
- 2022-01-26 02:06:41下载
- 积分:1
-
VB编写的MODBUS通讯实现源码
VB编写的MODBUS通讯实现源码,
功能:
Public Sub tran_modbus_order(ByVal byt_slv_id As Byte,
ByVal byt_func As Byte, ByVal addr As Long, byt_data() As Byte)
Function CRC16(data() As Byte) As String
- 2023-01-05 06:50:03下载
- 积分:1
-
Socks5Client 研究了一下SOCKS5代理协议,顺手用VC6写了个客户端演示程序。这个程序演示了如何使用winsock2穿过Scoks5代理取得HTT...
Socks5Client 研究了一下SOCKS5代理协议,顺手用VC6写了个客户端演示程序。这个程序演示了如何使用winsock2穿过Scoks5代理取得HTTP服务器上的网页内容。SOCKS5代理协议详见RFC1928和RFC1929。写这个程序的目的是为写一个SOCKS5代理服务器准备(可以用来调试协议),正在开发中。-Socks5Client some research SOCKS5 agency agreements with VC6 simply wrote the client presentations. This procedure demonstrated how to use WinSock2 Scoks5 Acting achieved through HTTP server on the web. SOCKS5 agency agreement detailed in RFC1928 and RFC1929. Was the purpose of this procedure is to write a SOCKS5 proxy preparation (can be used to debug protocol), is under development.
- 2022-06-17 14:43:25下载
- 积分:1
-
C语言实现贪吃蛇
//: Snake.c
/* * * * * * * * * * * * * * * * * * * * * * *
// Project: RedSnake(贪吃蛇)
// Author: Problue
// Version: 1.0
// Date: 19:55 2012-10-29
* * * * * * * * * * * * * * * * * * * * * * */
#include
#include
#include
#include "pcc32.h"
// 定义地图的尺寸及坐标
#define MAP_WIDTH 32 // 地图宽度
#define MAP_HEIGHT 32 // 地图高度
#define OFFSET_X 1 // 地图左右的边距
#define OFFSET_Y 1 // 地图上下的边距
#define TOTAL_WIDTH (MAP_WIDTH + OFFSET_X * 2) // 窗口宽度
#define TOTAL_HEIGHT (MAP_HEIGHT + OFFSET_Y * 2) // 窗口高度
#define GotoMap(x, y) gotoTextPos((x) * 2, (y))
// 定义地图方格的状态,分别为: 空格、蛇头、蛇身、蛇尾、食物
#define BS_SPACE 0
#define BS_SHEAD 1
#define BS_SBODY 2
#define BS_STAIL 3
#define BS_FOOD 4
// 蛇默认长度
#define SNAKE_MIN_LEN 5
// 定义蛇运动方向: 上、下、左、右
#define DIR_UP 1
#define DIR_DOWN 2
#define DIR_LEFT 3
- 2022-05-15 19:59:34下载
- 积分:1
-
系统会自动删除目录的调试和发布,所以请D。
System will automatically delete the directory of debug and release, so please do not put fi
- 2022-01-31 23:17:52下载
- 积分:1
-
iNET 协议 总线规范 以及总线接口定义 word文档
iNET 协议 总线规范 以及总线接口定义 word文档-iNET Protocol Bus Specification
- 2023-04-04 01:50:04下载
- 积分:1
-
消隐 计算机 图形学 VC++实现的 图形的消隐
消隐 计算机 图形学 VC++实现的 图形的消隐-Blanking Computer Graphics VC++ implementation of the graphics blanking
- 2022-04-20 01:59:26下载
- 积分:1
-
With C++ Allocation algorithm of Dijkstra shortest path problem
用C++编的迪杰斯特拉算法实现的最短路径问题-With C++ Allocation algorithm of Dijkstra shortest path problem
- 2022-01-29 03:49:04下载
- 积分:1
-
In this project I try to use many features of Matlab like image processing , ani...
工业机器人的图像处理,动画控制其他MATLAB工具箱(虚拟现实工具箱)Matlab的许多功能。
所附文件包含在Simulink模型,转换成图像信号,数据处理,以控制机器人动画-In this project I try to use many features of Matlab like image processing , animation control (Virtual Reality Toolbox) with other Matlab toolboxes.
The attached files contains a Simulink model that convert the image processing data into signals in order to control the animation of the robot.
- 2022-07-25 20:10:14下载
- 积分:1
-
windows核心编程随书源码
windows核心编程随书源码, 此书为Windows下程序开发的经典读物, 推荐大家研究一下其中源码, 必将大受裨益, 比如DLL注入技术, 都有很详尽的讲解, 并介绍了5种注入方法。
- 2022-02-11 21:00:52下载
- 积分:1