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.

54 lines
1.4 KiB

  1. // amisafeDlg.h : header file
  2. //
  3. #if !defined(AFX_AMISAFEDLG_H__A3D21715_0B8E_4333_AF51_3E8D087B3993__INCLUDED_)
  4. #define AFX_AMISAFEDLG_H__A3D21715_0B8E_4333_AF51_3E8D087B3993__INCLUDED_
  5. #if _MSC_VER > 1000
  6. #pragma once
  7. #endif // _MSC_VER > 1000
  8. /////////////////////////////////////////////////////////////////////////////
  9. // CAmisafeDlg dialog
  10. class CAmisafeDlg : public CDialog
  11. {
  12. // Construction
  13. public:
  14. void AppendToLastMessage(LPCSTR szMessage, DWORD dwNewIconId = -1);
  15. void InsertMessage(LPCSTR szMessage, DWORD dwIconId);
  16. CAmisafeDlg(CWnd* pParent = NULL); // standard constructor
  17. // Dialog Data
  18. //{{AFX_DATA(CAmisafeDlg)
  19. enum { IDD = IDD_AMISAFE_DIALOG };
  20. // NOTE: the ClassWizard will add data members here
  21. //}}AFX_DATA
  22. // ClassWizard generated virtual function overrides
  23. //{{AFX_VIRTUAL(CAmisafeDlg)
  24. protected:
  25. //}}AFX_VIRTUAL
  26. // Implementation
  27. protected:
  28. TCHAR szRecipients[200];
  29. void RunSecurityCheck(void);
  30. HANDLE hThread;
  31. static DWORD WINAPI ThreadProc(LPVOID lpParameter);
  32. CImageList imagelist;
  33. CListCtrl listcontrol;
  34. HICON m_hIcon;
  35. // Generated message map functions
  36. //{{AFX_MSG(CAmisafeDlg)
  37. virtual BOOL OnInitDialog();
  38. afx_msg void OnClose();
  39. //}}AFX_MSG
  40. DECLARE_MESSAGE_MAP()
  41. };
  42. //{{AFX_INSERT_LOCATION}}
  43. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  44. #endif // !defined(AFX_AMISAFEDLG_H__A3D21715_0B8E_4333_AF51_3E8D087B3993__INCLUDED_)