-
This program called (WM_TIMER) ,is designed for time keeping.
In this program I...
这项计划要求( WM_TIMER ) ,是专为时间维持。
在这个项目中我用三( 3 )功能( SetTimer , OnTimer , KillTimer ) ,这些功能都支持该计划的选择-This program called (WM_TIMER) ,is designed for time keeping.
In this program I used three (3) functions (SetTimer,OnTimer,KillTimer),these function support the program with option
- 2022-02-16 06:45:41下载
- 积分:1
-
Research Institute in China Blocks AD conversion
研究研华模块得AD转换程序-Research Institute in China Blocks AD conversion
- 2022-08-16 14:29:51下载
- 积分:1
-
比 Windows 自带的高级一点的计算器,能将整个表达式输入,然后求值。这个程序要求读者具备编译原理的一些知识
比 Windows 自带的高级一点的计算器,能将整个表达式输入,然后求值。这个程序要求读者具备编译原理的一些知识-than Windows, bringing their senior point calculators, the entire expression input, and then evaluated. This procedure requires the reader has compiled some of the principles of knowledge
- 2022-02-04 00:01:02下载
- 积分:1
-
Graph adjacency list, stack, queue, such as code storage structure.
图的邻接表、栈、队列等存储结构代码实现。-Graph adjacency list, stack, queue, such as code storage structure.
- 2023-04-30 15:35:03下载
- 积分:1
-
这是个时钟程序。
这是个时钟程序。-This is a clock program.
- 2022-04-15 18:41:24下载
- 积分:1
-
vb.net写字板原代码
vb.net写字板原代码-vb.net tablet source
- 2022-03-18 15:20:56下载
- 积分:1
-
游戏脚本npcsay编辑器,使用于骑士游戏脚本编辑,功能齐全!...
游戏脚本npcsay编辑器,使用于骑士游戏脚本编辑,功能齐全!-Npcsay game script editor, use the Script Editor in the Cavalier games, full-featured!
- 2023-07-27 21:50:03下载
- 积分:1
-
PLL design assitant, from M.H.Perrott, MIT
PLL design assitant, from M.H.Perrott, MIT
- 2022-02-12 08:39:15下载
- 积分: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
-
关于歌曲及音乐列表的点唱机
关于歌曲及音乐列表的点唱机-songs and music on the jukebox List
- 2022-03-29 20:52:05下载
- 积分:1