-
鼠标计程器程序源代码.zip
鼠标计程器程序源代码.zip-way for the mouse or program source code. Zip
- 2022-06-27 01:07:50下载
- 积分:1
-
截图软件,有快捷键功能,可以调用系统画图和照片查看器进行编辑和查看
截图软件,有快捷键功能,可以调用系统画图和照片查看器进行编辑和查看。全屏截图,选择截图,快捷键用钩子实现,对于初学编程的人比较有用。Screenshot of the software, there are shortcut keys function, you can call the system drawing and photo viewer for editing and viewing. Full-screen screenshot, select shots, shortcuts hook used to achieve more useful for the novice programmer person.
- 2023-02-07 03:05:05下载
- 积分:1
-
这个是Win32ASM教程文件,是学习Win32ASM的好书。
这个是Win32ASM教程文件,是学习Win32ASM的好书。-This is a tutorial Win32ASM documents, the books are Win32ASM study.
- 2022-05-27 13:40:57下载
- 积分:1
-
TVideoGrabber Video Capture and Media Player component
TVideoGrabber Video Capture and Media Player component
- 2022-10-11 03:10:03下载
- 积分:1
-
com高级编程实例多个
com高级编程实例多个-com programming examples of a number of senior
- 2022-06-19 20:36:23下载
- 积分:1
-
树的用法,初期的学习,新手要用的关于树的作用,方法
树的用法,初期的学习,新手要用的关于树的作用,方法-shu
- 2022-05-27 17:41:53下载
- 积分:1
-
数电中通过软件模拟实现脉搏测试仪的实现,完整的实验报告,有设计过程和结果...
数电中通过软件模拟实现脉搏测试仪的实现,完整的实验报告,有设计过程和结果-Number of electric pulse through the implementation of software tester Analog implementation of a complete test report, there is the design process and results
- 2023-07-18 00:35:04下载
- 积分:1
-
设置地图符号-各种渲染方式的使用
使用ArcMap Layout(布局)界面制作专题地图
将各种地图元素添加到地图版面中...
设置地图符号-各种渲染方式的使用
使用ArcMap Layout(布局)界面制作专题地图
将各种地图元素添加到地图版面中
-Set map symbols- the use of a variety of rendering methods
Use ArcMap Layout (layout) the production of thematic maps interface
A variety of map elements will be added to the map layout in
- 2022-01-25 23:47:45下载
- 积分:1
-
A wine database for Windows Pocket
A wine database for Pocket Windows-A wine database for Windows Pocket
- 2022-02-24 13:56:51下载
- 积分: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