-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathArchView.h
More file actions
48 lines (39 loc) · 1.29 KB
/
ArchView.h
File metadata and controls
48 lines (39 loc) · 1.29 KB
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
/////////////////////////////////////////////////////////////////////////////
//ArchView.h
//////////////////////////////////////////////////////////////////////
#ifndef T_ARCH_VIEW_H
#define T_ARCH_VIEW_H
//vspomogatel'nie funkcii
int AddToGenDetectString(char*, const char*);
//dlya sozdaniya osnovnogo okna plagina
ATOM MyRegisterClass ();
HWND InitInstance (HWND);
LRESULT CALLBACK WndProc (HWND, UINT, WPARAM, LPARAM);
HWND WINAPI DoCreateTabControl(HWND);
//moi obrabotshiki dlya okon
LRESULT CALLBACK RichEditWndProc (HWND, UINT, WPARAM, LPARAM);
//rabota s zakladkoy Info
int CreateTabInfo(HWND);
int DeleteTabInfo(HWND);
int ShowTabInfo (HWND);
int HideTabInfo (HWND);
int ResizeTabInfo(HWND);
//rabota s zakladkoy Comment
int CreateTabContext(HWND);
int DeleteTabContext(HWND);
int ShowTabContext (HWND);
int HideTabContext (HWND);
int ResizeTabContext(HWND);
//rabota s zakladkoy Comment
int CreateTabComment(HWND);
int DeleteTabComment(HWND);
int ShowTabComment (HWND);
int HideTabComment (HWND);
int ResizeTabComment(HWND);
//rabota s zakladkoy About
int CreateTabAbout(HWND);
int DeleteTabAbout(HWND);
int ShowTabAbout (HWND);
int HideTabAbout (HWND);
int ResizeTabAbout(HWND);
#endif //T_ARCH_VIEW_H