-
用Visual C++编写的窗口生成的代码,很容易理解Windows程序…
采用Visual C++编写的窗口产生代码,便于理解Windows程序运行原理及程序编写流程,窗口产生过程,句柄原理,消息队列,回调函数,窗口关闭与应用程序退出的工作关系-Using Visual C++ Prepared window generated code, easy to understand Windows program to run the principle and procedure of the preparation process, the process window, handle theory, message queues, callback function, the window closed with the application to withdraw from the working relationship between
- 2022-09-03 06:35:03下载
- 积分:1
-
这个是我软大一的作品,目前完成度90%,卡在了云的那里。如果哪位高人可以指点一下如何化云的话,不慎感激...
这个是我软大一的作品,目前完成度90%,卡在了云的那里。如果哪位高人可以指点一下如何化云的话,不慎感激-soft freshman works, completed for 90% of cards in the cloud there. If a person can Which gets advice on how one goes, then inadvertently grateful. .
- 2022-04-15 08:23:59下载
- 积分:1
-
Given a connected weighted undirected graph, find the minimum spanning tree grap...
给出一个连通带权的无向图,找出该图的最小生成树。并带有问题的详细描述及测试数据。-Given a connected weighted undirected graph, find the minimum spanning tree graph. With a detailed description of the problem and the test data.
- 2022-05-08 15:47: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
-
文件分割器源码,将各种大文件方便的分割成1.4M大小的小文件,以便分盘携带。复制到目标机器后,再用它将多个小文件合并既可使用,
文件分割器源码,将各种大文件方便的分割成1.4M大小的小文件,以便分盘携带。复制到目标机器后,再用它将多个小文件合并既可使用,- Document division source code, each kind of big document
convenience division 1.4M size small document, in order to a minute
plate carries. After duplicates the goal machine, then will use it
many small documents merge already to be possible to use,
- 2022-01-26 14:50:15下载
- 积分:1
-
北大ACM试题poj 第2602题源码,很好的代码,希望对搞ACM的同学有帮助...
北大ACM试题poj 第2602题源码,很好的代码,希望对搞ACM的同学有帮助-Peking University ACM Chapter 2602 question Question poj source code, good code, and want to help students engage in ACM
- 2022-12-31 01:15:05下载
- 积分:1
-
系统定时休眠的小程序
系统定时休眠的小程序-system regularly dormancy of small programs
- 2022-01-26 03:16:00下载
- 积分:1
-
This a sample Bluetooth application which illustrates the use of Windows CE
Bl...
This a sample Bluetooth application which illustrates the use of Windows CE
Bluetooth stack WinSock getsockopt/setsockopt programming interfaces.-This a sample Bluetooth application which illustrates the use of Windows CE Bluetooth stack WinSock getsockopt/setsockopt programming interfaces.
- 2022-03-05 16:12:28下载
- 积分:1
-
Printing for the printing
用于印刷行业的网站
印刷网站免费智能建站系统V8.1-Printing for the printing
- 2022-07-01 13:34:43下载
- 积分:1
-
用VC++做一个跟资料管理器差不多的树型控件,左边点击,右边显示。...
用VC++做一个跟资料管理器差不多的树型控件,左边点击,右边显示。-With VC++ To do with the information manager of a similar tree controls, left click on the right show.
- 2022-04-22 20:29:39下载
- 积分:1