// PZMedical2121Z.h : main header file for the PROJECT_NAME application // #pragma once #ifndef __AFXWIN_H__ #error "include 'stdafx.h' before including this file for PCH" #endif #include "resource.h" // main symbols // PZMedical2121ZApp: // See PZMedical2121Z.cpp for the implementation of this class // class PZMedical2121ZApp : public CWinApp { public: PZMedical2121ZApp(); // Overrides public: virtual BOOL InitInstance(); bool GetLastInstance(); bool GetAppPath(); HANDLE hEventXrayGenStart; HANDLE hEventXrayGenStop; HANDLE hEventXrayGenSetDose; HANDLE hEventXrayCalEndSuccess; HANDLE hEventXrayCalEndFailed; HANDLE hEventSYNC; HANDLE hShutdownEvent; HANDLE hToggleEvent; HANDLE hTimeOutEvent; HANDLE hEventWarning; HANDLE hEventStatus; HANDLE hEventActiveMode; // Implementation DECLARE_MESSAGE_MAP() }; extern PZMedical2121ZApp theApp;