PZMedical2121Z.h 1012 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. // PZMedical2121Z.h : main header file for the PROJECT_NAME application
  2. //
  3. #pragma once
  4. #ifndef __AFXWIN_H__
  5. #error "include 'stdafx.h' before including this file for PCH"
  6. #endif
  7. #include "resource.h" // main symbols
  8. // PZMedical2121ZApp:
  9. // See PZMedical2121Z.cpp for the implementation of this class
  10. //
  11. class PZMedical2121ZApp : public CWinApp
  12. {
  13. public:
  14. PZMedical2121ZApp();
  15. // Overrides
  16. public:
  17. virtual BOOL InitInstance();
  18. bool GetLastInstance();
  19. bool GetAppPath();
  20. HANDLE hEventXrayGenStart;
  21. HANDLE hEventXrayGenStop;
  22. HANDLE hEventXrayGenSetDose;
  23. HANDLE hEventXrayCalEndSuccess;
  24. HANDLE hEventXrayCalEndFailed;
  25. HANDLE hEventSYNC;
  26. HANDLE hShutdownEvent;
  27. HANDLE hToggleEvent;
  28. HANDLE hTimeOutEvent;
  29. HANDLE hEventWarning;
  30. HANDLE hEventStatus;
  31. HANDLE hEventActiveMode;
  32. // Implementation
  33. DECLARE_MESSAGE_MAP()
  34. };
  35. extern PZMedical2121ZApp theApp;