View Single Post
Join Date: Nov 2008
Posts: 17
Reputation: maxicube is an unknown quantity at this point 
Solved Threads: 0
maxicube maxicube is offline Offline
Newbie Poster

Re: Install Directory of another program

 
0
  #3
Nov 21st, 2008
heh. didnt help me that much :/ but dad had some code for me

  1. HKEY hKey;
  2. DWORD buffersize = 1024;
  3. char* hldsloc = new char[buffersize];
  4. RegOpenKeyEx (HKEY_CURRENT_USER,
  5. "Software\\Valve\\HLServer",NULL,KEY_READ,&hKey);
  6. RegQueryValueEx(hKey,"InstallPath",NULL,NULL,(LPBYTE) hldsloc,&buffersize);
  7. RegCloseKey (hKey);
Reply With Quote