wiaitem.h
来自「winddk src目录下的WDM源码压缩!」· C头文件 代码 · 共 25 行
H
25 行
#pragma once
#define MIN_PROPID 2
class CWiaItem {
public:
CWiaItem();
~CWiaItem();
HRESULT SetIWiaItem(__in IWiaItem2 *pIWiaItem);
void Release();
HRESULT ReadPropertyLong(PROPID PropertyID, __out LONG *plPropertyValue);
HRESULT ReadPropertyGUID(PROPID PropertyID, __out GUID *pguidPropertyValue);
HRESULT ReadPropertyBSTR(PROPID PropertyID, __out BSTR *pbstrPropertyValue);
HRESULT WritePropertyLong(PROPID PropertyID, LONG lPropertyValue);
HRESULT WritePropertyGUID(PROPID PropertyID, GUID guidPropertyValue);
private:
IWiaPropertyStorage *m_pIWiaPropStg;
protected:
};
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?