PropSheetTemplate.h
上传用户:apjinmao
上传日期:2007-01-02
资源大小:96k
文件大小:1k
源码类别:

PropertySheet

开发平台:

Visual C++

  1. // $$Root$$.h : main header file for the $$Root$$ application
  2. //
  3. #ifndef __AFXWIN_H__
  4. #error include 'stdafx.h' before including this file for PCH
  5. #endif
  6. #include "resource.h" // main symbols
  7. /////////////////////////////////////////////////////////////////////////////
  8. // C$$Safe_root$$App:
  9. // See $$Root$$.cpp for the implementation of this class
  10. //
  11. class C$$Safe_root$$App : public CWinApp
  12. {
  13. public:
  14. C$$Safe_root$$App();
  15. // Overrides
  16. // ClassWizard generated virtual function overrides
  17. //{{AFX_VIRTUAL(C$$Safe_root$$App)
  18. public:
  19. virtual BOOL InitInstance();
  20. //}}AFX_VIRTUAL
  21. $$IF(START_ON_TASKBAR)
  22. public:
  23. BOOL EnableStartOnTaskBar (BOOL bEnable = TRUE)
  24. {
  25. BOOL bRes = GetProfileInt (_T ("StartUp"), _T ("StartOnTaskBarAllowed"), FALSE);
  26. WriteProfileInt (_T ("StartUp"), _T ("StartOnTaskBarAllowed"), bEnable);
  27. return (bRes);
  28. }
  29. $$ENDIF //START_ON_TASKBAR
  30. // Implementation
  31. //{{AFX_MSG(C$$Safe_root$$App)
  32. // NOTE - the ClassWizard will add and remove member functions here.
  33. //    DO NOT EDIT what you see in these blocks of generated code !
  34. //}}AFX_MSG
  35. DECLARE_MESSAGE_MAP()
  36. };
  37. /////////////////////////////////////////////////////////////////////////////
  38. $$IF(START_ON_TASKBAR)
  39. inline BOOL AfxEnableStartOnTaskBar (BOOL bEnable = TRUE)
  40. {
  41. return (((C$$Safe_root$$App *)AfxGetApp ())->EnableStartOnTaskBar (bEnable));
  42. }
  43. $$ENDIF //START_ON_TASKBAR