📄 wiaitem.h
字号:
#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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -