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.

43 lines
1.2 KiB

  1. //
  2. // proprun.h: local resources prop pg
  3. // Tab D
  4. //
  5. // Copyright Microsoft Corportation 2000
  6. // (nadima)
  7. //
  8. #ifndef _proprun_h_
  9. #define _proprun_h_
  10. #include "sh.h"
  11. #include "tscsetting.h"
  12. class CPropRun
  13. {
  14. public:
  15. CPropRun(HINSTANCE hInstance, CTscSettings* pTscSet, CSH* pSh);
  16. ~CPropRun();
  17. static CPropRun* CPropRun::_pPropRunInstance;
  18. static INT_PTR CALLBACK StaticPropPgRunDialogProc (HWND hwndDlg,
  19. UINT uMsg,
  20. WPARAM wParam,
  21. LPARAM lParam);
  22. void SetTabDisplayArea(RECT& rc) {_rcTabDispayArea = rc;}
  23. private:
  24. //Local resources tab
  25. INT_PTR CALLBACK PropPgRunDialogProc (HWND hwndDlg,
  26. UINT uMsg,
  27. WPARAM wParam,
  28. LPARAM lParam);
  29. private:
  30. CTscSettings* _pTscSet;
  31. CSH* _pSh;
  32. RECT _rcTabDispayArea;
  33. HINSTANCE _hInstance;
  34. };
  35. #endif // _proprun_h_