-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathENGINE.H
77 lines (62 loc) · 1.43 KB
/
ENGINE.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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
// Logivw.h : interface of the CLogiView class
//
// Copyright (C) 1993-1994 George Mills and Softronics, Inc. Corporation
// All rights reserved.
//
#define UNKNOWN 2
#define HI 1
#define LO 0
#define DRIVE 0
#define FLOAT 1
extern void CheckWindow(int *x,int *y, int *w, int *h);
extern void LaunchFile(CString &csFile);
extern void RelativeToFullPath(CString &csRelPath, CString &csBasePath, CString &csFullPath);
extern BOOL TouchFile(CString &csFile);
extern BOOL IsWindowsNT();
class Anode : public CObject
{
public:
int State;
int NextState;
int PrevState;
int DriveState;
int NextDriveState;
int PrevDriveState;
long LastCycle;
CString Name;
CObList DeviceList;
CLogiGate* pDriverGate;
Anode(int state, char *name, int drivestate);
void Update();
}
;
class AKeyboardMessage : public CObject
{
public:
CLogiGate* pLogiGate;
CLogiView* pView;
BOOL bDown;
UINT nChar;
AKeyboardMessage(CLogiGate* pLogigate, CLogiView* pView, BOOL bDown, UINT nChar);
}
;
class ANetworkMessage : public CObject
{
public:
CLogiGate* pLogiGate;
CLogiDoc* pDoc;
LPARAM lParam;
WPARAM wParam;
ANetworkMessage(CLogiGate* pLogigate, CLogiDoc* pDoc, LPARAM lParam, WPARAM wParam);
}
;
class AMouseMessage : public CObject
{
public:
CLogiGate* pLogiGate;
CLogiView* pView;
BOOL bDown;
CPoint aPoint;
AMouseMessage(CLogiGate* pLogigate, CLogiView* pView, BOOL bDown, CPoint &aPoint);
}
;