
08.11.2013, 12:33
|
Прохожий
|
|
Регистрация: 02.08.2013
Сообщения: 47
Версия Delphi: Delphi 7
Репутация: 5
|
|
Цитата:
Сообщение от poli-smen
Как объявлены переменные dwCreationFlags, lpApplicationName, Security_Attributes ?
|
Код:
function CreateProcess
(lpApplicationName: PChar;
lpCommandLine: PChar;
lpProcessAttributes: TSecurityAttributes;
lpThreadAttributes: TSecurityAttributes;
bInheritHandles: LongBool;
dwCreationFlags: Longword;
lpEnvironment: Pointer;
lpCurrentDirectory: PChar;
lpStartupInfo:TStartupInfo;
lpProcessInformation: TProcessInformation):
LongBool;
var
Rlst: LongBool;
StartUpInfo: TStartUpInfo;
ProcessInfo: TProcessInformation;
|