360的开机启动时间界面从大二开始伴随我们一直到现在,好奇这个时间是怎样获取的,在逆向时遇到Windows的一个API:GetTickCount( ),可以完成这个任务。
代码如下:
#include<Windows.h>
#include<stdio.h>int main()
{DWORD a = GetTickCount();char Display[100]={0};sprintf(Display, "系统开机时间:%d秒", a/1000);MessageBoxA(NULL, Display, "开机时间", MB_OK);return 0;
}
把这个程序放到启动文件夹中,效果如下:
开机时间32秒,还有那么回事吧!
本文链接:https://my.lmcjl.com/post/3689.html
展开阅读全文
4 评论