注册表

Posted _xiaohaige

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了注册表相关的知识,希望对你有一定的参考价值。

1、HKEY代表的是注册表。

LONG WINAPI RegCreateKeyEx(
  _In_       HKEY                  hKey,      //父键句柄,五个父键
  _In_       LPCTSTR               lpSubKey,    //相对路径
  _Reserved_ DWORD                 Reserved,    //null
  _In_opt_   LPTSTR                lpClass,     //null
  _In_       DWORD                 dwOptions,    //
  _In_       REGSAM                samDesired,
  _In_opt_   LPSECURITY_ATTRIBUTES lpSecurityAttributes,
  _Out_      PHKEY                 phkResult,
  _Out_opt_  LPDWORD               lpdwDisposition
);
LONG WINAPI RegSetKeyValue(
  _In_     HKEY    hKey,
  _In_opt_ LPCTSTR lpSubKey,
  _In_opt_ LPCTSTR lpValueName,
  _In_     DWORD   dwType,
  _In_opt_ LPCVOID lpData,
  _In_     DWORD   cbData
);

 


 

以上是关于注册表的主要内容,如果未能解决你的问题,请参考以下文章

片段未在后台堆栈中注册

片段中的 EditText 上的空指针异常 [重复]

带有固定按钮的片段

如何获取片段内在firebase中注册的用户数?

关于片段生命周期

使用意图从另一个片段调用一个片段