1.
Говорили, что она живет здесь.
It was sad that she …
They sad that she …
She was sad to live here.
Indefinite infinitive – одновременность действия со сказуемым и будущность
1.
Говорили, что она живет здесь.
It was sad that she …
They sad that she …
She was sad to live here.
Indefinite infinitive – одновременность действия со сказуемым и будущность
Я хочу, чтобы он помог мне.
I want him to help me.
Мне нравится как она поет.
I like her to sing.
Мы считаем, что он хороший человек.
We believe that he is a good man.
We think him to be a good man.
[code language=”pascal”]
var
PrIn: TProcessInformation;
StIn: TStartupInfo;
Res: bool;
ProcID, Process: Cardinal;
// start
begin
GetStartupInfo(StIn);
Res := CreateProcess(PChar(‘..\Project1.exe’),
PChar(‘"command line params"’), nil, nil, False, CREATE_NEW_PROCESS_GROUP,
nil, nil, StIn, PrIn);
ProcID := PrIn.hProcess;
Process := PrIn.dwProcessId;
end;
// kill
begin
TerminateProcess(ProcId, 0);
end;
[/code]