Leaked source code of windows server 2003
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.

30 lines
1.1 KiB

  1. //-------------------------------------------------------------------------
  2. // File: DlgFilterProperties.h
  3. //
  4. // Author : Kishnan Nedungadi
  5. //
  6. // created : 3/27/2000
  7. //-------------------------------------------------------------------------
  8. INT_PTR CALLBACK FilterPropertiesDlgProc(HWND hDLG, UINT iMessage, WPARAM wParam, LPARAM lParam);
  9. class CFilterPropertiesDlg
  10. {
  11. public:
  12. CFilterPropertiesDlg(IWbemServices * pIWbemServices, IWbemClassObject * pIWbemClassObject);
  13. ~CFilterPropertiesDlg();
  14. INT_PTR CALLBACK FilterPropertiesDlgProc(HWND hDlg, UINT iMessage, WPARAM wParam, LPARAM lParam);
  15. protected:
  16. STDMETHODIMP InitializeDialog();
  17. STDMETHODIMP DestroyDialog();
  18. STDMETHODIMP PopulateRulesList();
  19. STDMETHODIMP ClearRulesList();
  20. STDMETHODIMP AddItemToList(IWbemClassObject * pIWbemClassObject);
  21. STDMETHODIMP ShowProperty(IWbemClassObject * pIWbemClassObject, LPCTSTR pszPropertyName, long lResID);
  22. HWND m_hWnd;
  23. IWbemServices * m_pIWbemServices;
  24. HWND m_hwndRulesListView;
  25. IWbemClassObject * m_pIWbemClassObject;
  26. };