1、建立或開啟登錄檔
regcreatekeyex()
long winapi regcreatekeyex(
__in hkey hkey,
__in lpctstr lpsubkey,
dword
reserved,
__in lptstr lpclass,
__in dword dwoptions,
__in regsam samdesired,
__in lpsecurity_attributes lpsecurityattributes,
__out phkey phkresult,
__out lpdword lpdwdisposition);
引數 型別及說明
hkey long,乙個開啟項的控制代碼,或者乙個標準項名
lpsubkey string,欲建立的新子項的名字
reserved long,設為零
lpclass string,項的類名
dwoptions long,下述常數為零:reg_option_volatile——這個項不正式儲存下來,系統重新啟動後會消失
samdesired long,帶有字首key_??的乙個或多個常數。它們組合起來描述了允許對這個項進行哪些操作
lpsecurityattributes security_attributes,對這個項的
安全特性進行描述的乙個結構(用byval as long傳遞空值)。不適用於windows 95
phkresult long,指定用於裝載新子項控制代碼的乙個變數
lpdwdisposition long,用於裝載下列某個常數的乙個變數:
reg_created_new_key——新建的乙個子項
reg_opened_existing_key——開啟乙個現有的項
2、設定鍵值
regsetvalueex()
3、開啟鍵
regopenkey()
4、獲取檔案所在路徑
getmodulefilename
5、獲取系統所在路徑
getsystemdirectory()
6、複製檔案到指定位置
copyfile()
winCE 登錄檔相關討論
儲存到登錄檔中 這一章主要講解windows ce.net下登錄檔相關技術。1 物件儲存 object store 物件儲存是windows ce預設的資料儲存機制。任何新建立的核心中都預設包含物件儲存器。物件儲存的實質是在ram中建立乙個檔案系統,將檔案儲存在ram中,這些檔案 於rom。當裝置啟...
901 1登錄檔相應操作
很老的技術,只為入門 木馬自啟動的三種方式 1 登錄檔鍵值 hkey local machine software microsoft windows currentversion run hkey current user software microsoft windows currentver...
更改登錄檔的幾個函式
一 定義 hkey hkey char content 256 所查詢登錄檔鍵值的內容 dword dwtype reg sz 定義讀取資料型別 dword dwlength 256 struct hkey rootkey 登錄檔主鍵名稱 tchar subkey 欲開啟登錄檔項的位址 tchar ...