Source code of Windows XP (NT5)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

43 lines
1019 B

  1. // KeyRing.h : main header file for the KEYRING 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. // CKeyRingApp:
  9. // See KeyRing.cpp for the implementation of this class
  10. //
  11. class CKeyRingApp : public CWinApp
  12. {
  13. public:
  14. CKeyRingApp();
  15. // Overrides
  16. // ClassWizard generated virtual function overrides
  17. //{{AFX_VIRTUAL(CKeyRingApp)
  18. public:
  19. virtual BOOL InitInstance();
  20. virtual BOOL OnIdle(LONG lCount);
  21. virtual int ExitInstance();
  22. //}}AFX_VIRTUAL
  23. // Implementation
  24. //{{AFX_MSG(CKeyRingApp)
  25. afx_msg void OnAppAbout();
  26. // NOTE - the ClassWizard will add and remove member functions here.
  27. // DO NOT EDIT what you see in these blocks of generated code !
  28. //}}AFX_MSG
  29. DECLARE_MESSAGE_MAP()
  30. BOOL DealWithParameters();
  31. BOOL m_fInitialized;
  32. };
  33. /////////////////////////////////////////////////////////////////////////////