Hi,
   I need to access registry and need to store the values of the key and 
subkeys along with values in a data structure . For example ,
  I Should access HKCU/software , I should get the details of all keys under 
software like Microsoft etc and also the internal subkeys of all the ubkeys. 
ALong with that I need to get the values of all subkeys. 

Can anyone suggest how can I achieve this.

I designed a data strucure like this

struct keyDetails
{
    char *keyName;
    char *keyvalue;
};

struct MyTree
{
    char *Name;
    vector<struct keyDetails > MyKeys;
    vector<struct MyTree *>subkeys;
};

But somehow I am unable to get what I need.


Please throw some light on this.

Thx,
--Gopi



      The INTERNET now has a personality. YOURS! See your Yahoo! Homepage. 
http://in.yahoo.com/

[Non-text portions of this message have been removed]

Reply via email to