forked from ChrisVeigl/BrainBay
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathob_doku.h
33 lines (20 loc) · 754 Bytes
/
ob_doku.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
/* -----------------------------------------------------------------------------
BrainBay Version 1.7, GPL 2003-2010, contact: [email protected]
OB_DOKU.H: contains the DOKU-Object
the object's propertries are declared and the
constructor-, make_dialog-, load-, save-, incoming_data-, work-, and destructor-
methods are implemented here
-----------------------------------------------------------------------------*/
#include "brainBay.h"
// from OB_DOKU.CPP :
LRESULT CALLBACK DokuDlgHandler(HWND hDlg, UINT message, WPARAM wParam, LPARAM lParam);
class DOKUOBJ : public BASE_CL
{
public:
char text[8192];
DOKUOBJ(int num);
void make_dialog(void);
void load(HANDLE hFile);
void save(HANDLE hFile);
~DOKUOBJ();
};