WIA_PROPID_TO_NAME structure (wia_xp.h)
Provides a quick means by which applications can look up the standard Windows Image Acquisition (WIA) property name from the WIA property ID (or vice versa). If the propid does not exist in this array, it is likely not a standard WIA property. Other ways to get the property name from the property ID include using the IEnumSTATPROPSTG retrieved by calling IWiaPropertyStorage::Enum on a particular item.
Syntax
typedef struct _WIA_PROPID_TO_NAME {
PROPID propid;
LPOLESTR pszName;
} WIA_PROPID_TO_NAME, *PWIA_PROPID_TO_NAME;
Members
propid
Type: PROPID
WIA property ID.
pszName
Type: LPOLESTR
WIA property name.
Note Property names are not localized. They are primarily used to support scripting languages; therefore, they are always the same on any system.
Requirements
Requirement | Value |
---|---|
Minimum supported client | Windows 2000 Professional, Windows XP [desktop apps only] |
Minimum supported server | Windows Server 2003 [desktop apps only] |
Header | wia_xp.h (include Wia.h) |