RDSTerminal.h
上传用户:hbzxgg2
上传日期:2009-03-28
资源大小:291k
文件大小:1k
源码类别:

Windows Mobile

开发平台:

Visual C++

  1. // RDSTerminal.h : main header file for the PROJECT_NAME application
  2. //
  3. #pragma once
  4. #ifndef __AFXWIN_H__
  5. #error "include 'stdafx.h' before including this file for PCH"
  6. #endif
  7. #ifdef POCKETPC2003_UI_MODEL
  8. #include "resourceppc.h"
  9. #endif 
  10. #ifdef SMARTPHONE2003_UI_MODEL
  11. #include "resourcesp.h"
  12. #endif
  13. #include "BlueTooth_WM.h"
  14. typedef struct _Program_Setting
  15. {
  16. t_RemoteBthDevInfo RemoteBthDevInfo_InUsing;
  17. TCHAR szServiceInUsingGUID[40];
  18. } t_ProgramSetting;
  19. // CRDSTerminalApp:
  20. // See RDSTerminal.cpp for the implementation of this class
  21. //
  22. class CRDSTerminalApp : public CWinApp
  23. {
  24. public:
  25. CRDSTerminalApp();
  26. // Overrides
  27. public:
  28. virtual BOOL InitInstance();
  29. // Implementation
  30. DECLARE_MESSAGE_MAP()
  31. public:
  32. virtual int ExitInstance();
  33. };
  34. extern CRDSTerminalApp theApp;
  35. //=========================================================================
  36. // 全局变量
  37. //=========================================================================
  38. extern TCHAR g_CurDir[MAX_PATH];
  39. extern CBlueTooth_WM *m_pBlueTooth_WM;
  40. extern t_ProgramSetting g_Setting;