Share via


GetProcessVersion (Windows CE 5.0)

Send Feedback

This function retrieves the major and minor version numbers of the system on which the specified process expects to run.

DWORDGetProcessVersion(DWORDProcessId);

Parameters

  • ProcessId
    [in] Process identifier of the process of interest.

    A value of zero specifies the calling process.

Return Values

If the function succeeds, the return value is the version of the system on which the process expects to run. The high word of the return value contains the major version number. The low word of the return value contains the minor version number.

If the function fails, the return value is zero.

To get extended error information, call GetLastError.

The function fails if ProcessId is an invalid value.

Remarks

GetProcessVersion performs less quickly when ProcessId is nonzero, specifying a process other than the calling process.

Requirements

OS Versions: Windows CE 3.0 and later.
Header: Winbase.h.
Link Library: Coredll.lib.

See Also

GetDllVersion

Send Feedback on this topic to the authors

Feedback FAQs

© 2006 Microsoft Corporation. All rights reserved.