CLocalMachine.h
上传用户:hhs829
上传日期:2022-06-17
资源大小:586k
文件大小:1k
源码类别:

DirextX编程

开发平台:

Visual C++

  1. // CLocalMachine.h: interface for the CLocalMachine class.
  2. //
  3. //////////////////////////////////////////////////////////////////////
  4. #if !defined(__CLocalMachine_h__)
  5. #define __CLocalMachine_h__
  6. #if _MSC_VER > 1000
  7. #pragma once
  8. #endif // _MSC_VER > 1000
  9. class CLocalMachine  
  10. {
  11. // Attributes
  12. private:
  13. bool    m_bInit;
  14. public:
  15. CLocalMachine();
  16. virtual ~CLocalMachine();
  17. bool GetIPAddress(char * outIP, char * outHost = NULL);
  18. protected:
  19. void InitSystem(void);
  20. void Uninit(void);
  21. };
  22. #endif // !defined(__CLocalMachine_h__)