DLLVERSIONINFODLLVERSIONINFO*
*Contents  *Index  *Topic Contents
*Previous Topic: DLLGETVERSIONPROC
*Next Topic: Taskbar

DLLVERSIONINFO


typedef struct _DllVersionInfo
{
    DWORD cbSize;
    DWORD dwMajorVersion;
    DWORD dwMinorVersion;
    DWORD dwBuildNumber;
    DWORD dwPlatformID;
}DLLVERSIONINFO;

Receives DLL-specific version information. It is used with the DllGetVersion function.

cbSize
Size of the structure, in bytes. This member must be filled in before calling the function.
dwMajorVersion
Major version of the DLL. If the DLL's version is 4.0.950, this value will be 4.
dwMinorVersion
Minor version of the DLL. If the DLL's version is 4.0.950, this value will be 0.
dwBuildNumber
Build number of the DLL. If the DLL's version is 4.0.950, this value will be 950.
dwPlatformID
Identifies the platform for which the DLL was built. This can be one of the following values:
DLLVER_PLATFORM_WINDOWS The DLL was built for all Windows platforms.
DLLVER_PLATFORM_NT The DLL was built specifically for Windows NT.

Up Top of Page
© 1997 Microsoft Corporation. All rights reserved. Terms of Use.