Я хочу, чтобы он помог мне.
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.
Я хочу, чтобы он помог мне.
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]
https://lingualeo.com/ru/jungle/old-school-vocabulary-too-formal-318159