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.

29 lines
597 B

  1. #ifndef FTDLG_H
  2. #define FTDLG_H
  3. #include "basedlg.h"
  4. class IAssocStore;
  5. class CFTDlg : public CBaseDlg
  6. {
  7. public:
  8. CFTDlg(ULONG_PTR ulpAHelpIDsArray);
  9. protected:
  10. virtual ~CFTDlg();
  11. LRESULT OnCtrlSetFocus(WPARAM wParam, LPARAM lParam);
  12. virtual LRESULT WndProc(UINT uMsg, WPARAM wParam, LPARAM lParam);
  13. HRESULT _InitAssocStore();
  14. static void MakeDefaultProgIDDescrFromExt(LPTSTR pszProgIDDescr, DWORD dwProgIDDescr,
  15. LPTSTR pszExt);
  16. protected:
  17. // Our connection to the data
  18. IAssocStore* _pAssocStore;
  19. };
  20. #endif //FTDLG_H