Skip to content

Latest commit

 

History

History
49 lines (32 loc) · 1.22 KB

CeGetVersionEx.md

File metadata and controls

49 lines (32 loc) · 1.22 KB

Home

Function name : CeGetVersionEx

Group: Remote Application Programming (RAPI) - Library: rapi


This function obtains extended information about the version of the operating system that is currently running.


Code examples:

Pocket PC: base class

Declaration:

BOOL CeGetVersionEx(
  LPCEOSVERSIONINFO lpVersionInformation
);  

FoxPro declaration:

DECLARE INTEGER CeGetVersionEx IN rapi;
	LONG lpVersionInformation  

Parameters:

lpVersionInformation [out] Long pointer to an CEOSVERSIONINFO data structure that the function fills with operating system version information.


Return value:

Nonzero indicates success. Zero indicates failure.


Comments:

Before calling the CeGetVersionEx function, set the dwOSVersionInfoSize member of the CEOSVERSIONINFO data structure to sizeof(CEOSVERSIONINFO).

Nonzero indicates success. Zero indicates failure. To determine if a function failed because of RAPI errors, call CeRapiGetError. To determine if a function failed because of non-RAPI errors, call CeGetLastError.