123456789101112131415161718192021222324252627282930313233343536373839 |
- #include "stdafx.h"
- #include "AutoRun.h"
- #include "SendDataDlg.h"
- #ifdef _DEBUG
- #define new DEBUG_NEW
- #undef THIS_FILE
- static char THIS_FILE[] = __FILE__;
- #endif
- SendDataDlg::SendDataDlg(CWnd* pParent )
- : CDialog(SendDataDlg::IDD, pParent)
- {
-
-
-
- }
- void SendDataDlg::DoDataExchange(CDataExchange* pDX)
- {
- CDialog::DoDataExchange(pDX);
-
-
-
- }
- BEGIN_MESSAGE_MAP(SendDataDlg, CDialog)
-
-
- END_MESSAGE_MAP()
- void SendDataDlg::Run()
- {
- }
|