mirror of
https://github.com/reactos/reactos.git
synced 2024-12-29 02:25:17 +00:00
commented out unused variables/code
svn path=/trunk/; revision=8058
This commit is contained in:
parent
022e7cfde7
commit
110e28efaa
1 changed files with 4 additions and 4 deletions
|
@ -1,4 +1,4 @@
|
|||
/* $Id: opengl32.c,v 1.12 2004/02/06 18:17:18 royce Exp $
|
||||
/* $Id: opengl32.c,v 1.13 2004/02/06 20:25:33 royce Exp $
|
||||
*
|
||||
* COPYRIGHT: See COPYING in the top level directory
|
||||
* PROJECT: ReactOS kernel
|
||||
|
@ -485,8 +485,8 @@ OPENGL32_RegEnumDrivers( DWORD idx, LPWSTR name, LPDWORD cName )
|
|||
LPCWSTR subKey =
|
||||
L"SOFTWARE\\Microsoft\\Windows NT\\CurrentVersion\\OpenGLDrivers\\";
|
||||
LONG ret;
|
||||
DWORD size;
|
||||
WCHAR driver[256];
|
||||
/*DWORD size;*/
|
||||
/*WCHAR driver[256];*/
|
||||
|
||||
if (name == NULL)
|
||||
return ERROR_SUCCESS; /* nothing to do */
|
||||
|
@ -503,7 +503,7 @@ OPENGL32_RegEnumDrivers( DWORD idx, LPWSTR name, LPDWORD cName )
|
|||
}
|
||||
|
||||
/* get subkey name */
|
||||
size = sizeof (driver) / sizeof (driver[0]);
|
||||
/*size = sizeof (driver) / sizeof (driver[0]);*/
|
||||
ret = RegEnumKeyW( hKey, idx, name, *cName );
|
||||
if (ret != ERROR_SUCCESS)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue