WPPROVINFO
typedef struct tagWPPROVINFO
{
DWORD dwSize;
DWORD dwFlags;
DWORD dwPriority;
LPTSTR lpszProviderName;
LPTSTR lpszProviderCLSID;
LPTSTR lpszDllPath;
}
WPPROVINFO, *LPWPPROVINFO;
- dwSize
- Size of the provider information structure in bytes, including the string buffers for the name, CLSID, and DLL path.
- dwFlags
- Provider flags. Not currently used.
- dwPriority
- Integer that indicates the provider's priority. 0 is highest priority.
- lpszProviderName
- Friendly name of the provider.
- lpszProviderCLSID
- CLSID of the provider implementation object.
- lpszDllPath
- Fully qualified path of the DLL that contains the COM server for the provider.
Top of Page
© 1997 Microsoft Corporation. All rights reserved. Terms of Use.