GetMacAddrDlg.h
上传用户:qzzxgm
上传日期:2009-12-14
资源大小:1882k
文件大小:2k
源码类别:

书籍源码

开发平台:

Visual C++

  1. // GetMacAddrDlg.h : header file
  2. //
  3. #if !defined(AFX_GETMACADDRDLG_H__F21D8DE7_67AB_11D6_8F32_00E04CE76240__INCLUDED_)
  4. #define AFX_GETMACADDRDLG_H__F21D8DE7_67AB_11D6_8F32_00E04CE76240__INCLUDED_
  5. #if _MSC_VER > 1000
  6. #pragma once
  7. #endif // _MSC_VER > 1000
  8. #include "afxtempl.h"
  9. #include "nb30.h"
  10. /////////////////////////////////////////////////////////////////////////////
  11. // CGetMacAddrDlg dialog
  12. //定义两个存放返回网卡信息的变量
  13. typedef struct _ASTAT_
  14. {
  15.     ADAPTER_STATUS adapt;
  16.     NAME_BUFFER    NameBuff [30];
  17. }ASTAT, * PASTAT;
  18. typedef struct AdapterStrct
  19. {
  20. int nIndex; //网卡编号
  21. CString strMac; //Mac地址(字符串形式)
  22. }ADPTSTRCT;
  23. class CGetMacAddrDlg : public CDialog
  24. {
  25. // Construction
  26. public:
  27. CGetMacAddrDlg(CWnd* pParent = NULL); // standard constructor
  28. // Dialog Data
  29. //{{AFX_DATA(CGetMacAddrDlg)
  30. enum { IDD = IDD_GETMACADDR_DIALOG };
  31. CListCtrl m_ctrlAdaptersLst;
  32. //}}AFX_DATA
  33. // ClassWizard generated virtual function overrides
  34. //{{AFX_VIRTUAL(CGetMacAddrDlg)
  35. protected:
  36. virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
  37. //}}AFX_VIRTUAL
  38. // Implementation
  39. protected:
  40. HICON m_hIcon;
  41. CArray<ADPTSTRCT,ADPTSTRCT&> m_arrAdapters;
  42. void GetOneMac(int AdapterIndex);
  43. // Generated message map functions
  44. //{{AFX_MSG(CGetMacAddrDlg)
  45. virtual BOOL OnInitDialog();
  46. afx_msg void OnSysCommand(UINT nID, LPARAM lParam);
  47. afx_msg void OnPaint();
  48. afx_msg HCURSOR OnQueryDragIcon();
  49. afx_msg void OnGetaddr();
  50. //}}AFX_MSG
  51. DECLARE_MESSAGE_MAP()
  52. };
  53. //{{AFX_INSERT_LOCATION}}
  54. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  55. #endif // !defined(AFX_GETMACADDRDLG_H__F21D8DE7_67AB_11D6_8F32_00E04CE76240__INCLUDED_)