mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-09-02 19:26:32 +00:00
msconfig: don't use inline functions as case labels
svn path=/branches/ros-amd64-bringup/; revision=40992
This commit is contained in:
@@ -185,10 +185,10 @@ GetAutostartEntriesFromRegistry ( HKEY hRootKey, TCHAR* KeyName )
|
||||
|
||||
switch (PtrToLong(hRootKey))
|
||||
{
|
||||
case PtrToLong(HKEY_LOCAL_MACHINE):
|
||||
case (ULONG_PTR)HKEY_LOCAL_MACHINE:
|
||||
_tcscpy(Path, _T("HKLM\\\0"));
|
||||
break;
|
||||
case PtrToLong(HKEY_CURRENT_USER):
|
||||
case (ULONG_PTR)HKEY_CURRENT_USER:
|
||||
_tcscpy(Path, _T("HKCU\\\0"));
|
||||
break;
|
||||
default:
|
||||
|
||||
Reference in New Issue
Block a user