GxCntGetDriverSummary

Purpose

Returns the driver description string and version number.

Syntax

GxCntGetDriverSummary (szSummary, nSummaryMaxLen, pdwVersion, pnStatus)

Parameters

Name
Type
Description
pszSummary
LPSTR
Buffer to receive the summary string.
nSummaryMaxLen
SHORT
Buffer size passed by pszSummary.
pdwVersion
LPDWORD
Driver version
pnStatus
LPSHORT
Returned status: 0 on success, negative number on failure.

Example

The following example returns the driver summary.

 

SHORT nHandle, nStatus;

DWORD dwVersion;

CHAR szSummary[128];

GxCntGetDriverSummary(szSummary, 128, &dwVersion, &nStatus);

After the function call the parameter SzSummary will be set to:

"GXCNT Driver for GC2210, GC2220, GC2230, GX2210, GX2220 and GX2230, Version 2.10, Copyright(c) 2006 Marvin Test Solutions".

 

See Also

GxCntGetErrorString