Monthly Archives: July 2009

2009暑期——软件开发模式

2009-07-29 15:10 / Software / 1 comment / 21 views /

该记录一下了。2009,能耗测试项目。但是所谓的能耗测试,在我这里完全就是一个软件开发过程,而且是一个开发没有什么具体功能的软件:和测试仪表通信;数据写入数据库。考虑系统扩展,通信方式可能变化,选用仪表可能变化。通信可能使用TCP/IP或者串口,仪表变化就面临通信协议的变化。设计[......]

more…

GetSystemInfo Function

2009-07-01 15:17 / Windows / no comment / 99 views /

SYSTEM_INFO Structure

Contains information about the current computer system. This includes the architecture and type of the processor, the[......]

more…

利用Windows api获得CPU使用率

2009-07-01 15:01 / Windows / no comment / 293 views /

#include   <windows.h>
#include   <conio.h>
#include   <stdio.h>

#define   SystemBasicInformation               0
#define[......]

more…