#include
#include
//提供乙個unload函式只是為了讓這個程式能動態解除安裝
void driverunload
(pdriver_object driver)
pwchar gettimefunction()
; wchar buff =
0x0;
unicode_string unsting =
;int count =0;
//獲得標準時間
kequerysystemtime
(&snow)
;//轉換為當地時間
exsystemtimetolocaltime
(&snow,
&now)
;rtltimetotimefields
(&now,
&now_fields)
;//打到字串中
rtlstringcchprintfw
(time_str,
32, l"%4d-%2d-%2d %2d-%2d-%2d"
, now_fields.year, now_fields.month, now_fields.day,
now_fields.hour, now_fields.minute, now_fields.second)
;return time_str;
}//driverentry,核心入口函式
ntstatus driverentry
(pdriver_object driver, punicode_string reg_path)
//dbgprint("當前kernelmodule中斷級別:%d.\r\n",kil);
//設定乙個解除安裝函式,便於這個函式退出
獲取windows系統時間
獲取系統時間,這個方法比較簡單 sytimeemtime time getlocaltime time 獲得當前本地時間 getsytimeemtime time 這乙個是獲得格林威治時間,一般不用 sytimeemtime結構說明 typedef struct systemtime systemt...
windows獲取時間方法
方法一 用c語言庫函式中的time函式 ctime函式和ctime s 函式,精確到秒 time函式 標頭檔案 time.h 功能 獲取當前的系統時間,返回乙個time t型別 即乙個大整數 用法 time t time time t timer ctime函式 標頭檔案 time.h 功能 cti...
windows 獲取時間戳
windows 批處理時間戳 1 時間戳格式 取年份 echo date 0,4 取月份 echo date 5,2 取日期 echo date 8,2 取星期 echo date 10,6 取小時 echo time 0,2 取分鐘 echo time 3,2 取秒 echo time 6,2 取...