Вниз
Скачать: CL | DM;

что не так?   Найти похожие ветки 

← →
thoth ©   (2004-10-01 12:52) [0]

Хочу использовать функцию:
function WinExecAndWait(Path: PChar; Visibility: Word): Word;
var
 InstanceID: THandle;
 Msg: TMsg;
begin
 InstanceID := WinExec(Path, Visibility);
 if InstanceID < 32 then { значение меньше чем 32 указывает на ошибку }
   WinExecAndWait := InstanceID
 else
   repeat
     while PeekMessage(Msg, 0, 0, 0, pm_Remove) do
     begin
       if Msg.message = wm_Quit then
         Halt(Msg.WParam);
       TranslateMessage(Msg);
       DispatchMessage(Msg);
     end;
   until
     GetModuleUsage(InstanceID) = 0;
 WinExecAndWait := 0;
end;

Но при компиляции выдает сообщение:  Undeclared identifier: "GetModuleUsage"

Что я забыл?


← →
MBo ©   (2004-10-01 13:08) [1]

Используй лучше CreateProcess, пример есть в FAQ



Страницы: 1 вся ветка

Скачать: CL | DM;



Память: 0.44 MB
Время: 0.023 c
8-1091714055
VaKU
2004-08-05 17:54
2004.11.07
Перемотка в DSPack


14-1097911237
Seldon
2004-10-16 11:20
2004.11.07
Патентование программ


14-1098274091
Drakosha
2004-10-20 16:08
2004.11.07
.NET


8-1091926499
Andry
2004-08-08 04:54
2004.11.07
Свет в GLScene


14-1098275104
Gorlum
2004-10-20 16:25
2004.11.07
Просмотреть dll и drv




   Наверх