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

EnumServicesStatus   Найти похожие ветки 

 
MetalFan ©   (2005-02-08 12:26) [0]

как пользоваться subj? сделал так, но что-то не работает:
function GetSystemServiceList(
 AList: TStringList): Boolean;
const
 SizeBuf = 4096;
var
 ServList: array[0..SizeBuf-1] of TEnumServiceStatus;
 Size,
 Needed,
 Return,
 Handle: Cardinal;
 i: Integer;
begin
 Result := Assigned(AList) and InitSCManager;
 if not Result then Exit;
 Size := SizeOf(ServList);
 Result := EnumServicesStatus( FSCManagerHandle,
                     SERVICE_WIN32,
                     SERVICE_ACTIVE,
                     ServList[0],
                     Size,
                     Needed,
                     Return,
                     Handle);
 if not Result then Exit;
 AList.Clear;
 for i := 0 to pred( Return ) do
   AList.Add( ServList[i].lpServiceName );
end;

соотв InitSCManager инициирует SCManager


 
Reindeer Moss Eater ©   (2005-02-08 12:30) [1]

GetLastError знает всю правду


 
MetalFan ©   (2005-02-08 12:30) [2]

sorry! сам рязобрался! надо было Needed, Return и Handle обнулить перед вызовом!
все, всем спасибо за внимание)



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

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



Память: 0.45 MB
Время: 0.039 c
1-1110327630
SkyRanger
2005-03-09 03:20
2005.03.20
Создание своих событий для класса


4-1107765583
REA
2005-02-07 11:39
2005.03.20
TreeView checkboxes


1-1109880616
MORA
2005-03-03 23:10
2005.03.20
Как запустить таймер в потоке?


1-1109918193
ser35
2005-03-04 09:36
2005.03.20
Чтение МЕМО


3-1108849037
table refrash
2005-02-20 00:37
2005.03.20
Как обновить данные в таблице в IB




   Наверх