listdev.h
Upload User: caisha3
Upload Date: 2013-09-21
Package Size: 208739k
Code Size: 1k
Category:

Windows Develop

Development Platform:

Visual C++

  1. // ListDev.h : main header file for the LISTDEV application
  2. //
  3. #ifndef __AFXWIN_H__
  4. #error include 'stdafx.h' before including this file for PCH
  5. #endif
  6. #include "resource.h" // main symbols
  7. /////////////////////////////////////////////////////////////////////////////
  8. // CListDevApp:
  9. // See ListDev.cpp for the implementation of this class
  10. //
  11. extern CString g_strStartupComputerName;
  12. class CListDevApp : public CWinApp
  13. {
  14. public:
  15. CListDevApp();
  16. // Overrides
  17. // ClassWizard generated virtual function overrides
  18. //{{AFX_VIRTUAL(CListDevApp)
  19. public:
  20. virtual BOOL InitInstance();
  21. //}}AFX_VIRTUAL
  22. // Implementation
  23. //{{AFX_MSG(CListDevApp)
  24. // NOTE - the ClassWizard will add and remove member functions here.
  25. //    DO NOT EDIT what you see in these blocks of generated code !
  26. //}}AFX_MSG
  27. DECLARE_MESSAGE_MAP()
  28. };
  29. class CMyCommandLineInfo : public CCommandLineInfo
  30. {
  31. public:
  32.     CMyCommandLineInfo() : m_WaitForName(FALSE), m_DisplayUsage(FALSE)
  33. {}
  34.     virtual void ParseParam(LPCTSTR lpszParam, BOOL bFlag, BOOL bLast);
  35.     BOOL    m_DisplayUsage;
  36. private:
  37.     BOOL    m_WaitForName;
  38. };
  39. /////////////////////////////////////////////////////////////////////////////