I want to call the Windows SDK function EnumDependentServicesA, which takes a pointer to an array of ENUM_SERVICE_STATUS structures (see below) and populates it.
typedef ENUM_SERVICE_STATUS
begin
LPSTR lpServiceName;
LPSTR lpDisplayName;
SERVICE_STATUS ServiceStatus;
end;
Once the call completes, how do I dereference the LPSTR's to get the string values?
Thanks
