Добавил:
Опубликованный материал нарушает ваши авторские права? Сообщите нам.
Вуз: Предмет: Файл:
Скачиваний:
6
Добавлен:
30.05.2020
Размер:
1.04 Кб
Скачать
//---------------------------------------------------------------------------

#include <vcl.h>
#pragma hdrstop

#include "Keys.h"
#pragma package(smart_init)
//---------------------------------------------------------------------------

//   Important: Methods and properties of objects in VCL can only be
//   used in a method called using Synchronize, for example:
//
//      Synchronize(UpdateCaption);
//
//   where UpdateCaption could look like:
//
//      void __fastcall tKeyboard::UpdateCaption()
//      {
//        Form1->Caption = "Updated in a thread";
//      }
//---------------------------------------------------------------------------
__fastcall tKeyboard::tKeyboard(bool CreateSuspended) : TThread(CreateSuspended) {

}


//---------------------------------------------------------------------------
void __fastcall tKeyboard::Execute()  {
  //---- Place thread code here ----

  keypress


  return;
}


//---------------------------------------------------------------------------
Соседние файлы в папке Tetris Project