Update of /cvsroot/decaldev/source/DecalInput
In directory sc8-pr-cvs1:/tmp/cvs-serv29127/DecalInput
Modified Files:
InputService.cpp
Log Message:
a few more CRegKey to RegKey needed for 100% clean build
Index: InputService.cpp
===================================================================
RCS file: /cvsroot/decaldev/source/DecalInput/InputService.cpp,v
retrieving revision 1.8
retrieving revision 1.9
diff -C2 -d -r1.8 -r1.9
*** InputService.cpp 23 May 2003 02:20:47 -0000 1.8
--- InputService.cpp 30 May 2003 04:12:03 -0000 1.9
***************
*** 161,165 ****
// First check if there's version info in the registry
! CRegKey key;
key.Open( HKEY_LOCAL_MACHINE, _T( "Software\\Decal" ) );
DWORD dwRegMajor, dwRegMinor;
--- 161,165 ----
// First check if there's version info in the registry
! RegKey key;
key.Open( HKEY_LOCAL_MACHINE, _T( "Software\\Decal" ) );
DWORD dwRegMajor, dwRegMinor;
***************
*** 263,267 ****
// Load the keymap
! CRegKey key;
if(key.Open( HKEY_LOCAL_MACHINE, _T( "SOFTWARE\\Microsoft\\Microsoft Games\\Asheron's Call\\1.00" ), KEY_READ ) != ERROR_SUCCESS)
return E_FAIL;
--- 263,267 ----
// Load the keymap
! RegKey key;
if(key.Open( HKEY_LOCAL_MACHINE, _T( "SOFTWARE\\Microsoft\\Microsoft Games\\Asheron's Call\\1.00" ), KEY_READ ) != ERROR_SUCCESS)
return E_FAIL;
|