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.

78 lines
1.7 KiB

  1. /*++
  2. Microsoft Windows
  3. Copyright (C) Microsoft Corporation, 1981 - 1999
  4. Module Name:
  5. irftp.h
  6. Abstract:
  7. Author:
  8. Rahul Thombre (RahulTh) 4/30/1998
  9. Revision History:
  10. 4/30/1998 RahulTh
  11. Created this module.
  12. --*/
  13. // irftp.h : main header file for the IRFTP application
  14. //
  15. #if !defined(AFX_IRFTP_H__10D3BB05_9CFF_11D1_A5ED_00C04FC252BD__INCLUDED_)
  16. #define AFX_IRFTP_H__10D3BB05_9CFF_11D1_A5ED_00C04FC252BD__INCLUDED_
  17. #if _MSC_VER >= 1000
  18. #pragma once
  19. #endif // _MSC_VER >= 1000
  20. #ifndef __AFXWIN_H__
  21. #error include 'stdafx.h' before including this file for PCH
  22. #endif
  23. #include "resource.h" // main symbols
  24. //name of a mutex that is used to ensure that only one instance of the
  25. //app. runs
  26. #define SINGLE_INST_MUTEX L"IRMutex_1A8452B5_A526_443C_8172_D29657B89F57"
  27. /////////////////////////////////////////////////////////////////////////////
  28. // CIrftpApp:
  29. // See irftp.cpp for the implementation of this class
  30. //
  31. class CIrftpApp : public CWinApp
  32. {
  33. public:
  34. CIrftpApp();
  35. // Overrides
  36. // ClassWizard generated virtual function overrides
  37. //{{AFX_VIRTUAL(CIrftpApp)
  38. public:
  39. virtual BOOL InitInstance();
  40. //}}AFX_VIRTUAL
  41. // Implementation
  42. //{{AFX_MSG(CIrftpApp)
  43. // NOTE - the ClassWizard will add and remove member functions here.
  44. // DO NOT EDIT what you see in these blocks of generated code !
  45. //}}AFX_MSG
  46. DECLARE_MESSAGE_MAP()
  47. };
  48. /////////////////////////////////////////////////////////////////////////////
  49. //{{AFX_INSERT_LOCATION}}
  50. // Microsoft Developer Studio will insert additional declarations immediately before the previous line.
  51. #endif // !defined(AFX_IRFTP_H__10D3BB05_9CFF_11D1_A5ED_00C04FC252BD__INCLUDED_)