Line | |
---|
1 |
|
---|
2 | class COneExt{
|
---|
3 | public:
|
---|
4 | BOOL m_bReg;
|
---|
5 | char m_szExtension[64];
|
---|
6 | char m_szNote[255];
|
---|
7 | BOOL m_bWindowsSearch;
|
---|
8 |
|
---|
9 | COLORREF TabColor;
|
---|
10 |
|
---|
11 | COneExt(BOOL bReg,char *lpszExtension,char *lpszNote,BOOL bWindowsSearch,COLORREF tab_color);
|
---|
12 | ~COneExt();
|
---|
13 | };
|
---|
14 |
|
---|
15 | class CExtLink{
|
---|
16 | public:
|
---|
17 | COneExt **ppobj_ExtItems;
|
---|
18 | int iExtItemNum;
|
---|
19 |
|
---|
20 | CExtLink();
|
---|
21 | ~CExtLink();
|
---|
22 |
|
---|
23 | void load(char *path);
|
---|
24 | void save(char *path);
|
---|
25 |
|
---|
26 | BOOL add(BOOL bReg,char *lpszExtension,char *lpszNote,BOOL bWindowsSearch,COLORREF tab_color);
|
---|
27 | void del(char *lpszExtension);
|
---|
28 |
|
---|
29 | void SetInitData();
|
---|
30 |
|
---|
31 | void ResetListView(HWND hListView);
|
---|
32 |
|
---|
33 | COLORREF GetTabColorFromFilePath(char *path);
|
---|
34 | };
|
---|
35 |
|
---|
36 |
|
---|
37 | void ExtensionLink(HWND hwnd);
|
---|
Note:
See
TracBrowser
for help on using the repository browser.