-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathListPlugin.h
More file actions
55 lines (45 loc) · 1.69 KB
/
ListPlugin.h
File metadata and controls
55 lines (45 loc) · 1.69 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
49
50
51
52
53
54
55
/////////////////////////////////////////////////////////////////////////////
//ListPlug.h
/////////////////////////////////////////////////////////////////////////////
#ifndef T_LIST_PLUG_H
#define T_LIST_PLUG_H
#define lc_copy 1
#define lc_newparams 2
#define lc_selectall 3
#define lc_setpercent 4
#define lcp_wraptext 1
#define lcp_fittowindow 2
#define lcp_ansi 4
#define lcp_ascii 8
#define lcp_variable 12
#define lcp_forceshow 16
#define lcs_findfirst 1
#define lcs_matchcase 2
#define lcs_wholewords 4
#define lcs_backwards 8
#define itm_percent 0xFFFE
#define itm_fontstyle 0xFFFD
#define itm_wrap 0xFFFC
#define itm_fit 0xFFFB
#define LISTPLUGIN_OK 0
#define LISTPLUGIN_ERROR 1
typedef struct __ListDefaultParamStruct
{
int size;
DWORD PluginInterfaceVersionLow;
DWORD PluginInterfaceVersionHi;
char DefaultIniName[MAX_PATH];
} ListDefaultParamStruct;
/////////////////////////////////////////////////////////////////////////////
//FUNCTIONS EXPORT
//////////////////////////////////////////////////////////////////////
HWND __stdcall ListLoad (HWND, char*, int);
void __stdcall ListCloseWindow (HWND);
void __stdcall ListGetDetectString (char*, int);
int __stdcall ListSearchText (HWND, char*, int);
int __stdcall ListSendCommand (HWND, int, int);
int __stdcall ListPrint (HWND, char*, char*, int, RECT*);
int __stdcall ListNotificationReceived(HWND, int, WPARAM, LPARAM);
void __stdcall ListSetDefaultParams (ListDefaultParamStruct*);
HBITMAP __stdcall ListGetPreviewBitmap (char*, int, int, char*, int);
#endif //T_LIST_PLUG_H