Source code of Windows XP (NT5)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

35 lines
1.1 KiB

  1. // WiaeditpropDlg.h: interface for the CWiaeditpropDlg class.
  2. //
  3. //////////////////////////////////////////////////////////////////////
  4. #if !defined(AFX_WIAEDITPROPDLG_H__680CD709_25B9_495E_9FAA_BECB0F97A333__INCLUDED_)
  5. #define AFX_WIAEDITPROPDLG_H__680CD709_25B9_495E_9FAA_BECB0F97A333__INCLUDED_
  6. #if _MSC_VER > 1000
  7. #pragma once
  8. #endif // _MSC_VER > 1000
  9. #include "wiaeditpropflags.h"
  10. #include "wiaeditpropnone.h"
  11. #include "wiaeditproplist.h"
  12. #include "wiaeditproprange.h"
  13. class CWiaeditpropDlg
  14. {
  15. public:
  16. void SetAttributes(ULONG ulAttributes, PROPVARIANT *pPropVar);
  17. void SetVarType(VARTYPE vt);
  18. VARTYPE GetVarType();
  19. void GetPropertyValue(TCHAR *szPropertyValue);
  20. UINT DoModal(TCHAR *szPropertyName, TCHAR *szPropertyValue);
  21. CWiaeditpropDlg();
  22. virtual ~CWiaeditpropDlg();
  23. private:
  24. VARTYPE m_vt; // variant type
  25. PROPVARIANT *m_pPropVar; // valid values propvariant( IN )
  26. ULONG m_ulAttributes; // attributes
  27. CString m_szPropertyValue; // property value
  28. };
  29. #endif // !defined(AFX_WIAEDITPROPDLG_H__680CD709_25B9_495E_9FAA_BECB0F97A333__INCLUDED_)