mirror of
https://github.com/reactos/reactos.git
synced 2025-02-24 01:15:09 +00:00
[WINMINE] Sync with Wine Staging 1.7.55. CORE-10536
svn path=/trunk/; revision=70121
This commit is contained in:
parent
a051ee115f
commit
622907fd77
2 changed files with 9 additions and 17 deletions
|
@ -79,38 +79,31 @@ static void LoadBoard( BOARD *p_board )
|
|||
RegOpenKeyExW( HKEY_CURRENT_USER, registry_key, 0, KEY_QUERY_VALUE, &hkey );
|
||||
|
||||
size = sizeof( p_board->pos.x );
|
||||
if( !RegQueryValueExW( hkey, xposW, NULL, &type,
|
||||
(LPBYTE) &p_board->pos.x, &size ) == ERROR_SUCCESS )
|
||||
if( RegQueryValueExW( hkey, xposW, NULL, &type, (BYTE*) &p_board->pos.x, &size ) )
|
||||
p_board->pos.x = 0;
|
||||
|
||||
size = sizeof( p_board->pos.y );
|
||||
if( !RegQueryValueExW( hkey, yposW, NULL, &type,
|
||||
(LPBYTE) &p_board->pos.y, &size ) == ERROR_SUCCESS )
|
||||
if( RegQueryValueExW( hkey, yposW, NULL, &type, (BYTE*) &p_board->pos.y, &size ) )
|
||||
p_board->pos.y = 0;
|
||||
|
||||
size = sizeof( p_board->rows );
|
||||
if( !RegQueryValueExW( hkey, heightW, NULL, &type,
|
||||
(LPBYTE) &p_board->rows, &size ) == ERROR_SUCCESS )
|
||||
if( RegQueryValueExW( hkey, heightW, NULL, &type, (BYTE*) &p_board->rows, &size ) )
|
||||
p_board->rows = BEGINNER_ROWS;
|
||||
|
||||
size = sizeof( p_board->cols );
|
||||
if( !RegQueryValueExW( hkey, widthW, NULL, &type,
|
||||
(LPBYTE) &p_board->cols, &size ) == ERROR_SUCCESS )
|
||||
if( RegQueryValueExW( hkey, widthW, NULL, &type, (BYTE*) &p_board->cols, &size ) )
|
||||
p_board->cols = BEGINNER_COLS;
|
||||
|
||||
size = sizeof( p_board->mines );
|
||||
if( !RegQueryValueExW( hkey, minesW, NULL, &type,
|
||||
(LPBYTE) &p_board->mines, &size ) == ERROR_SUCCESS )
|
||||
if( RegQueryValueExW( hkey, minesW, NULL, &type, (BYTE*) &p_board->mines, &size ) )
|
||||
p_board->mines = BEGINNER_MINES;
|
||||
|
||||
size = sizeof( p_board->difficulty );
|
||||
if( !RegQueryValueExW( hkey, difficultyW, NULL, &type,
|
||||
(LPBYTE) &p_board->difficulty, &size ) == ERROR_SUCCESS )
|
||||
if( RegQueryValueExW( hkey, difficultyW, NULL, &type, (BYTE*) &p_board->difficulty, &size ) )
|
||||
p_board->difficulty = BEGINNER;
|
||||
|
||||
size = sizeof( p_board->IsMarkQ );
|
||||
if( !RegQueryValueExW( hkey, markW, NULL, &type,
|
||||
(LPBYTE) &p_board->IsMarkQ, &size ) == ERROR_SUCCESS )
|
||||
if( RegQueryValueExW( hkey, markW, NULL, &type, (BYTE*) &p_board->IsMarkQ, &size ) )
|
||||
p_board->IsMarkQ = TRUE;
|
||||
|
||||
for( i = 0; i < 3; i++ ) {
|
||||
|
@ -126,8 +119,7 @@ static void LoadBoard( BOARD *p_board )
|
|||
for( i = 0; i < 3; i++ ) {
|
||||
wsprintfW( key_name, timeW, i+1 );
|
||||
size = sizeof( p_board->best_time[i] );
|
||||
if( !RegQueryValueExW( hkey, key_name, NULL, &type,
|
||||
(LPBYTE) &p_board->best_time[i], &size ) == ERROR_SUCCESS )
|
||||
if( RegQueryValueExW( hkey, key_name, NULL, &type, (BYTE*) &p_board->best_time[i], &size ) )
|
||||
p_board->best_time[i] = 999;
|
||||
}
|
||||
RegCloseKey( hkey );
|
||||
|
|
|
@ -234,7 +234,7 @@ reactos/base/applications/cmdutils/taskkill # Synced to WineStaging-1.7.47
|
|||
reactos/base/applications/cmdutils/wmic # Synced to WineStaging-1.7.47
|
||||
reactos/base/applications/cmdutils/wscript # Synced to WineStaging-1.7.37
|
||||
reactos/base/applications/cmdutils/xcopy # Synced to WineStaging-1.7.47
|
||||
reactos/base/applications/games/winmine # Synced to WineStaging-1.7.47 with our own resources.
|
||||
reactos/base/applications/games/winmine # Synced to WineStaging-1.7.55 with our own resources.
|
||||
reactos/base/applications/extrac32 # Synced to WineStaging-1.7.47
|
||||
reactos/base/applications/iexplore # Synced to WineStaging-1.7.47
|
||||
reactos/base/applications/notepad # Forked at Wine-20041201
|
||||
|
|
Loading…
Reference in a new issue