-
微软手机短信订购软件
微软手机短信订购软件-ordered Microsoft SMS software
- 2022-08-16 23:17:03下载
- 积分:1
-
dial out phs call and window screen control in micro window system.
dial out phs call and window screen control in micro window system.
- 2022-02-26 11:59:10下载
- 积分:1
-
怎样锁定计算机,并防止用户通过CTRL+ALT+DEL结束进程
怎样锁定计算机,并防止用户通过CTRL+ALT+DEL结束进程-How to lock the computer, and to prevent users CTRL+ ALT+ DEL Ending the process
- 2022-04-02 06:56:10下载
- 积分:1
-
C++ And Threads
by Randy Charles Morin
If you’ve ever done multithreaded pro...
C++ And Threads
by Randy Charles Morin
If you’ve ever done multithreaded programming then most likely it was in C++. I haven’t
heard of many developers using the CreateThread Win32 API function from Visual Basic
or even Delphi. The reason is that the advantages of C++ and multiple threads are usually
the same.
You want more responsiveness from some application. How do you do it? Well you
could have multiple threads in order to limit blocking of one application request by
another. You could also use a more low level language.
- 2023-01-16 05:35:03下载
- 积分:1
-
Read text from word file by c#
这是我用C桌面应用程序从word文件中读取文本的代码,对于许多应用程序或许多web应用程序的学生和开发人员来说非常简单和重要;
- 2022-02-21 01:01:48下载
- 积分:1
-
ruby on rails 登录注册发邮件验证
ruby on rails 登录注册发邮件验证-ruby on rails log registered e-mail authentication
- 2023-08-19 20:30:03下载
- 积分:1
-
asp服务端应用实例
asp服务端应用实例-asp server application
- 2022-02-25 23:33:46下载
- 积分:1
-
OPC Delopment Tools
OPC Delopment Tools
- 2022-02-22 11:43:06下载
- 积分: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
-
用Delphi开发的原子时钟程序。可以基于Internet进行准确较时。可用于网络时钟同步。...
用Delphi开发的原子时钟程序。可以基于Internet进行准确较时。可用于网络时钟同步。-with Delphi atomic clock procedures. Based on the Internet can be more accurate when. For the network clock synchronization.
- 2022-03-24 23:01:03下载
- 积分:1