testBT.h
上传用户:lds876
上传日期:2013-05-25
资源大小:567k
文件大小:2k
源码类别:

P2P编程

开发平台:

Visual C++

  1. // testBT.h : main header file for the TESTBT application
  2. //
  3. #if !defined(AFX_TESTBT_H__F2118822_4316_4F5E_9894_70A03E7F034C__INCLUDED_)
  4. #define AFX_TESTBT_H__F2118822_4316_4F5E_9894_70A03E7F034C__INCLUDED_
  5. #if _MSC_VER > 1000
  6. #pragma once
  7. #endif // _MSC_VER > 1000
  8. #ifndef __AFXWIN_H__
  9. #error include 'stdafx.h' before including this file for PCH
  10. #endif
  11. #include "resource.h"       // main symbols
  12. #include "common.h"
  13. class CEncryptedConnection;
  14. void ShowMessage(CEncryptedConnection* psocket, string strMsg);
  15. // enum eOperation {activity, fractionDone};
  16. // void StatusFunc(eOperation oper, _variant_t vVal);
  17. // void Finished();
  18. // void Failed(string e);
  19. // void data_flunked();
  20. // void errorFunc(string e);
  21. /////////////////////////////////////////////////////////////////////////////
  22. // CTestBTApp:
  23. // See testBT.cpp for the implementation of this class
  24. //
  25. class DbgGuiLeak
  26. {
  27. public:
  28.     explicit DbgGuiLeak ();
  29.     ~DbgGuiLeak ();
  30. static void Init();
  31. static void Exit();
  32. private:
  33. typedef int (CALLBACK * GETGUIRESOURCES_PROC)(HANDLE, DWORD);
  34. static HMODULE              m_hUser32;
  35. static GETGUIRESOURCES_PROC m_pfnGetGuiResources;
  36.     unsigned _guiResCount;
  37. };
  38. int AfxMessageBoxEx(LPCTSTR lpszText, UINT nType = MB_OK);
  39. #define AfxMessageBox AfxMessageBoxEx
  40. class CTestBTApp : public CWinApp
  41. {
  42. public:
  43. CTestBTApp();
  44. ~CTestBTApp();
  45. CFrameWnd* m_pMainFrame;
  46. // Overrides
  47. // ClassWizard generated virtual function overrides
  48. //{{AFX_VIRTUAL(CTestBTApp)
  49. public:
  50. virtual BOOL InitInstance();
  51. virtual BOOL PreTranslateMessage(MSG* pMsg);
  52. virtual CDocument* OpenDocumentFile(LPCTSTR lpszFileName);
  53. //}}AFX_VIRTUAL
  54. // Implementation
  55. //{{AFX_MSG(CTestBTApp)
  56. afx_msg void OnAppAbout();
  57. // NOTE - the ClassWizard will add and remove member functions here.
  58. //    DO NOT EDIT what you see in these blocks of generated code !
  59. //}}AFX_MSG
  60. DECLARE_MESSAGE_MAP()
  61. private:
  62. void MakeTorrent(CString strFilePath);
  63. UINT m_uUserMessage;
  64. };
  65. /////////////////////////////////////////////////////////////////////////////
  66. //{{AFX_INSERT_LOCATION}}
  67. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  68. #endif // !defined(AFX_TESTBT_H__F2118822_4316_4F5E_9894_70A03E7F034C__INCLUDED_)