Share via


EnumServices (Windows Embedded CE 6.0)

1/6/2010

This function returns information about all running services on the device.

Syntax

BOOL EnumServices(
  PBYTE pBuffer,
  DWORD pdwServiceEntries,
  DWORD pdwBufferLen
);

Parameters

  • pBuffer
    [in] Pointer to the buffer to hold the output. The first part of the buffer is an array that contains a total of pdwServiceEntriesServiceEnumInfo structures. The next part of the buffer contains the szDllName member of the ServiceEnumInfo structures.
  • pdwServiceEntries
    [out] Pointer to the DWORD that specifies the number of running service instances.
  • pdwBufferLen
    [in, out] Pointer to the DWORD that specifies the size, in bytes, of pBuffer when calling EnumServices.

Return Value

A nonzero value indicates success. A value of zero indicates failure. To get extended error information, call GetLastError.

Remarks

The number of services running in the system may change between calls to EnumServices. It is possible for an application to call EnumServices to retrieve the required buffer length, allocate a buffer of the required size, and then call EnumServices again only to have it fail because the buffer was not big enough because a new service was activated between the calls.

Requirements

Header service.h
Library coredll.lib
Windows Embedded CE Windows CE .NET 4.0 and later

See Also

Reference

Services.exe Functions
ServiceEnumInfo

Other Resources

Services.exe