Что не так с этим кодом декларации C?

#include <stdlib.h>
#include <Windows.h>
#include <Tchar.h>

HANDLE wHnd;    // Handle to write to the console.
HANDLE rHnd;    // Handle to read from the console.

int _tmain(int argc, _TCHAR* argv[]) {

    // Set up the handles for reading/writing:
    wHnd = GetStdHandle(STD_OUTPUT_HANDLE);
    rHnd = GetStdHandle(STD_INPUT_HANDLE);

    // Change the window title:
    SetConsoleTitle(TEXT("Win32 Console Control Demo"));

    // Set up the required window size:
    SMALL_RECT windowSize = {0, 0, 79, 49};

    // Change the console window size:
    SetConsoleWindowInfo(wHnd, TRUE, &windowSize);

}

Сообщается о некоторых подобных ошибках:

'SMALL_RECT' : illegal use of this type as an expression  
missing ';' before identifier 'windowSize'

1 ответ

Решение

Вы используете компилятор MS C, который поддерживает только древний стандарт C90. Все ваши переменные должны быть объявлены в верхней части тела функции.

int _tmain(int argc, _TCHAR* argv[])
{    
    // Set up the required window size:
    SMALL_RECT windowSize = {0, 0, 79, 49};

    // Set up the handles for reading/writing:
    wHnd = GetStdHandle(STD_OUTPUT_HANDLE);
    rHnd = GetStdHandle(STD_INPUT_HANDLE);

    // Change the window title:
    SetConsoleTitle(TEXT("Win32 Console Control Demo"));

    // Change the console window size:
    SetConsoleWindowInfo(wHnd, TRUE, &windowSize);
}

Больно, не правда ли?!

Другие вопросы по тегам