GlobalString.h 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. #ifndef __GSTRING__
  2. #define __GSTRING__
  3. #pragma once
  4. namespace GlobalString
  5. {
  6. extern CString g_strLogin;
  7. extern CString g_strLogout;
  8. extern CString g_strLoginFail;
  9. extern CString g_strLogoutFail;
  10. extern CString g_strCtrlClose;
  11. extern CString g_strCtrlOpen;
  12. extern CString g_strSwitchPC;
  13. extern CString g_strSwitchTV;
  14. // Ò£¿ØÆ÷;
  15. extern CString g_strRemoteDevice;
  16. extern CString g_strRestartRemoteDevice;
  17. extern CString g_strRemoteSelect;
  18. // Ö´ÐÐÆ÷;
  19. extern CString g_strActuator;
  20. extern CString g_strActuatorModify;
  21. extern CString g_strActuatorAddIP;
  22. extern CString g_strActuatorTVIP;
  23. extern CString g_strActuatorTaskID;
  24. extern CString g_strActuatorTaskStatus;
  25. extern CString g_strListDeviceType;
  26. extern CString g_strListDeviceName;
  27. extern CString g_strListDeviceStatus;
  28. extern CString g_strListTaskNo;
  29. extern CString g_strListTaskScript;
  30. extern CString g_strListTaskRunStatus;
  31. extern CString g_strListTaskResult;
  32. extern CString g_strListTaskLog;
  33. // USBÉý¼¶;
  34. extern CString g_strUSBUpgrade;
  35. extern CString g_strUpgradePath;
  36. extern CString g_strUpgradeFTPUser;
  37. extern CString g_strUpgradeFTPPassword;
  38. extern CString g_strUpgradeRememberFTP;
  39. extern CString g_strUpgradeBtn;
  40. extern CString g_strUpgradeOpenFile;
  41. extern CString g_strUpgradeNotify;
  42. void GetResourceString();
  43. };
  44. #endif