AnyServer.h
上传用户:wpp2016
上传日期:2010-02-01
资源大小:1250k
文件大小:2k
源码类别:

Telnet服务器

开发平台:

Visual C++

  1. // AnyServer.h : main header file for the ANYSERVER application
  2. //
  3. #if !defined(AFX_ANYSERVER_H__206A9D84_F69E_11D3_8A76_00E04CDD95C8__INCLUDED_)
  4. #define AFX_ANYSERVER_H__206A9D84_F69E_11D3_8A76_00E04CDD95C8__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. /////////////////////////////////////////////////////////////////////////////
  13. // CAnyServerApp:
  14. // See AnyServer.cpp for the implementation of this class
  15. //
  16. #define WM_USERNAME (WM_APP+101)
  17. #define WM_SOCKCOMMAND (WM_APP+102)
  18. #define WM_VALID (WM_APP+103)
  19. #define WM_IPADDR (WM_APP+104)
  20. #define WM_TRAY_NOTIFY (WM_APP+105)
  21. #define SCALE 7/8
  22. enum SCommand{GETINFO=2000,SHUTDOWN,LOGOFF,RESTART,LOCKKEY,UNLOCK,POWEROFF,ENDSERVE,RUNFILE,DELFILE,LISTPROC,KILLPROC,LISTFILE,VIEWSCR,GETFILE,FINDFILE,PUTFILE,CONFIG,NOOP=3000};
  23. typedef struct tagSYS_INFO
  24. {
  25. CString m_stPhysicalMemory;//物理内存
  26. CString m_stPhysicalMemAvailable;//目前可用内存
  27. CString m_stVendorInfo;//处理器标示,cyrixinstalled
  28. CString m_stIdentify;  //处理器型号,6x86mx
  29. CString m_stComputerName;//计算机名字
  30. CString m_stUserName;//当前用户
  31. CString m_stNumProcessors;//处理器个数
  32. CString m_stProcessorLevel;//处理器技术,mmx
  33. CString m_stDriver;
  34. }SYS_INFO;
  35. class CAnyServerApp : public CWinApp
  36. {
  37. public:
  38. CAnyServerApp();
  39. // Overrides
  40. // ClassWizard generated virtual function overrides
  41. //{{AFX_VIRTUAL(CAnyServerApp)
  42. public:
  43. virtual BOOL InitInstance();
  44. //}}AFX_VIRTUAL
  45. // Implementation
  46. //{{AFX_MSG(CAnyServerApp)
  47. afx_msg void OnAppAbout();
  48. // NOTE - the ClassWizard will add and remove member functions here.
  49. //    DO NOT EDIT what you see in these blocks of generated code !
  50. //}}AFX_MSG
  51. DECLARE_MESSAGE_MAP()
  52. };
  53. /////////////////////////////////////////////////////////////////////////////
  54. //{{AFX_INSERT_LOCATION}}
  55. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  56. #endif // !defined(AFX_ANYSERVER_H__206A9D84_F69E_11D3_8A76_00E04CDD95C8__INCLUDED_)