This topic has not yet been rated - Rate this topic

EnumServices (Windows CE 5.0)

Windows CE 5.0
Send Feedback

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

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 pdwServiceEntries ServiceEnumInfo 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 Values

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

OS Versions: Windows CE .NET 4.0 and later.
Header: Service.h.
Link Library: Coredll.lib.

See Also

ServiceEnumInfo | Services.exe


Send Feedback on this topic to the authors

Feedback FAQs

© 2006 Microsoft Corporation. All rights reserved.


Did you find this helpful?
(1500 characters remaining)
© 2013 Microsoft. All rights reserved.