How to write at HKEY_CURRENT_USER or HKEY_LOCAL_MACHINE
-
Hi all!
I need to write some data to HKEY_CURRENT_USER( or HKEY_LOCAL_MACHINE)\SOFTWARE, is Qt has some standard function to do this?
And how it will work on *nix OS? -
You may use "QSettings":http://doc.qt.nokia.com/4.7/qsettings.html for writing to registry.
Edit: QSettings may be used also for linux.
-
Tnx, this is solve my problem.