CRegKey
之前说的这个忘记加上去了,补充一下,这个的话呢其实就是说方便我们的调用。
比较特殊的是这个类不是MFC的,而是#include <atlbase.h>
而且类的函数比较简单,调用起来十分的方便。
- Attach Attaches a registry key handle to the CRegKey object.
- Close Releases m_hKey.
- Create Creates or opens the specified key.
- CRegKey Constructor.
- DeleteSubKey Deletes the specified key.
- DeleteValue Deletes a value field of the key identified by m_hKey.
- Detach Detaches m_hKey from the CRegKey object.
- Open Opens the specified key.
- QueryValue Retrieves the data for a specified value field.
- RecurseDeleteKey Deletes the specified key and explicitly deletes all subkeys.
- SetKeyValue Stores data in a specified value field of a specified key.
- SetValue Stores data in a specified value field.
但是有一点需要注意,如果想要立即写入的话呢要调用Flush方法,这个在我这个2001年的MSDN好像没有说明。