-
Notifications
You must be signed in to change notification settings - Fork 1
/
OCT.h
executable file
·56 lines (51 loc) · 1.34 KB
/
OCT.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
#pragma once
#ifndef __AFXWIN_H__
#error include 'stdafx.h' before including this file for PCH
#endif
#include "resource.h" // main symbols
#include "afxmt.h"
class COCTApp : public CWinApp
{
public:
COCTApp();
virtual ~COCTApp();
void StartSDOCTThreads();
void PauseSDOCTThreads();
void GenCaliCoeff(BOOL bAutoCali);
void InitiateArrays();
void FreeArrays();
void CallocArrays();
void StartImaqThread();
void StartCaliThread();
void StartFFTThread();
void StartDisplayIntensityThread();
void StartDisplayPhaseThread();
void StartDrawCurveThread();
void PauseImaqThread();
void PauseCaliThread();
void PauseFFTThread();
void PauseDisplayIntensityThread();
void PauseDisplayPhaseThread();
void PauseDrawCurveThread();
void TerminateImaqThread();
void TerminateCaliThread();
void TerminateFFTThread();
void TerminateSDOCTThreads();
void TerminateDisplayIntensityThread();
void TerminateDisplayPhaseThread();
void TerminateDrawCurveThread();
virtual BOOL InitInstance();
//{{AFX_MSG
afx_msg void OnAppAbout();
afx_msg void OnErrorDaq();
//}}AFX_MSG
DECLARE_MESSAGE_MAP()
public:
HANDLE m_hImaqThread;
HANDLE m_hFFTThread;
HANDLE m_hCaliThread;
HANDLE m_hDrawCurveThread;
HANDLE m_hDisplayIntensityThread;
HANDLE m_hDisplayPhaseThread;
};
extern COCTApp theApp;