-
s3c2440a完整USB驱动,wince源码,可安装使用,也可参照学习
s3c2440a完整USB驱动,wince源码,可安装使用,也可参照学习-s3c2440a integrity of the USB driver, wince source, can be installed to use, but also the light of learning
- 2022-03-18 01:56:03下载
- 积分:1
-
键盘钩子程序,初学者用
钩子程序,用WINCE拦截或者过滤键盘输入
钩子程序,用WINCE拦截或者过滤键盘输入钩子程序,用WINCE拦截或者过滤键盘输入钩子程序,用WINCE拦截或者过滤键盘输入
钩子程序,用WINCE拦截或者过滤键盘输入
钩子程序,用WINCE拦截或者过滤键盘输入
- 2023-06-23 17:25:03下载
- 积分:1
-
简单的系统托盘编程,双击系统托盘图标,则显示窗口,右键则弹出菜单...
简单的系统托盘编程,双击系统托盘图标,则显示窗口,右键则弹出菜单-simple system tray programming,double click the icon of system tray,show the main window.right click the icon,popup the menu
- 2022-03-25 21:49:05下载
- 积分:1
-
Standard and Application for Netwroking development.
网络开发标准及应用。
- 2023-03-07 13:25:04下载
- 积分:1
-
multifunction machines regular customs procedures can achieve this Mytob.BSNotes
多功能定时关机器 这个程序可以实现定时关机-multifunction machines regular customs procedures can achieve this Mytob.BSNotes
- 2022-02-03 01:03:41下载
- 积分:1
-
This a source code of telephone number search system,it is very useful
This a source code of telephone number search system,it is very useful
- 2022-03-13 15:29:46下载
- 积分:1
-
随机生成链表,并按大小排序,链表的插入删除以及查找工作...
随机生成链表,并按大小排序,链表的插入删除以及查找工作-Randomly generated list, and the size of order, delete and insert the list of job search
- 2022-01-28 06:05:35下载
- 积分:1
-
学习如何将程序托盘的小程序,很实用,简单。
学习如何将程序托盘的小程序,很实用,简单。-Learn how to program a small procedure trays, it is practical, simple.
- 2022-12-06 03:30:03下载
- 积分: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
-
CxIMAG库文件
Cximage库对图片的处理:包括图片的格式转换,图片的二次识别,图片字符的叠加,图片的锐化等等
- 2022-04-20 13:26:09下载
- 积分:1