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.

68 lines
1.5 KiB

  1. /**********************************************************************/
  2. /** Microsoft Windows/NT **/
  3. /** Copyright(c) Microsoft Corporation, 1997 - 1999 **/
  4. /**********************************************************************/
  5. /*
  6. delrcdlg.h
  7. Delete/tombstone a record dialog
  8. FILE HISTORY:
  9. */
  10. #if !defined _DELRCDLG_H
  11. #define _DELRCDLG_H
  12. #if _MSC_VER >= 1000
  13. #pragma once
  14. #endif // _MSC_VER >= 1000
  15. #ifndef _DIALOG_H
  16. #include "dialog.h"
  17. #endif
  18. /////////////////////////////////////////////////////////////////////////////
  19. // CDeleteRecordDlg dialog
  20. class CDeleteRecordDlg : public CBaseDialog
  21. {
  22. // Construction
  23. public:
  24. CDeleteRecordDlg(CWnd* pParent = NULL); // standard constructor
  25. // Dialog Data
  26. //{{AFX_DATA(CDeleteRecordDlg)
  27. enum { IDD = IDD_DELTOMB_RECORD };
  28. int m_nDeleteRecord;
  29. //}}AFX_DATA
  30. // Overrides
  31. // ClassWizard generated virtual function overrides
  32. //{{AFX_VIRTUAL(CDeleteRecordDlg)
  33. protected:
  34. virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
  35. //}}AFX_VIRTUAL
  36. // Implementation
  37. protected:
  38. // Generated message map functions
  39. //{{AFX_MSG(CDeleteRecordDlg)
  40. virtual void OnOK();
  41. virtual BOOL OnInitDialog();
  42. //}}AFX_MSG
  43. DECLARE_MESSAGE_MAP()
  44. public:
  45. virtual DWORD * GetHelpMap() { return WinsGetHelpMap(CDeleteRecordDlg::IDD);};
  46. public:
  47. BOOL m_fMultiple;
  48. };
  49. //{{AFX_INSERT_LOCATION}}
  50. // Microsoft Developer Studio will insert additional declarations immediately before the previous line.
  51. #endif // !defined _DELRCDLG_H