-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathim58terminalcpp.cpp
44 lines (40 loc) · 1.03 KB
/
im58terminalcpp.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
//---------------------------------------------------------------------------
#include <vcl.h>
#pragma hdrstop
#include <vcl.h>
#pragma hdrstop
#include <windows.h>
#include "im58main.h"
#include "im58terminalcpp.h"
#include "im58serial.h"
#include "im58debug.h"
#include "im58about.h"
#include "im58drive.h"
//---------------------------------------------------------------------------
#pragma package(smart_init)
#pragma resource "*.dfm"
TForm1 *Form1; /*
TRecv *thrR;
__fastcall TRecv::TRecv(bool CreateSuspended)
: TThread(CreateSuspended)
{
}
//---------------------------------------------------------------------------
void __fastcall TRecv::Execute()
{
FreeOnTerminate = true;
while (1)
{
Form9->readFromCom();
if(Terminated)
{
return;
}
}
} */
//---------------------------------------------------------------------------
__fastcall TForm1::TForm1(TComponent* Owner)
: TForm(Owner)
{
}
//---------------------------------------------------------------------------