source: trunk/dll/treecnr.h@ 1865

Last change on this file since 1865 was 1865, checked in by Steven Levine, 10 years ago

Correct WaitFleshWorkListEmpty typo that could corrupt heap
Protect some read-only strings from overwriting

  • Property svn:eolstyle set to native
  • Property svn:keywords set to Id
File size: 1.5 KB
Line 
1
2/***********************************************************************
3
4 $Id: treecnr.h 1865 2015-08-23 20:36:02Z stevenhl $
5
6 <<<description here>>>
7
8 Copyright (c) 1993-98 M. Kimes
9 Copyright (c) 2008 Steven H. Levine
10
11 Change log
12 28 Dec 08 GKY Check for LVM.EXE and remove Refresh removable media menu item as appropriate
13 28 Dec 08 GKY Rework partition submenu to gray out unavailable items (check for existence of files)
14 and have no default choice.
15 23 Aug 15 SHL Protect ShowTreeRec dirname arg
16
17***********************************************************************/
18
19#if !defined(TREECNR_H)
20#define TREECNR_H
21
22MRESULT EXPENTRY OpenButtonProc(HWND hwnd, ULONG msg, MPARAM mp1, MPARAM mp2);
23VOID ShowTreeRec(HWND hwndCnr, PCSZ dirname, BOOL collapsefirst, BOOL maketop);
24HWND StartTreeCnr(HWND hwndParent, ULONG flags);
25MRESULT EXPENTRY TreeClientWndProc(HWND hwnd, ULONG msg, MPARAM mp1,
26 MPARAM mp2);
27MRESULT EXPENTRY TreeObjWndProc(HWND hwnd, ULONG msg, MPARAM mp1, MPARAM mp2);
28MRESULT EXPENTRY TreeStatProc(HWND hwnd, ULONG msg, MPARAM mp1, MPARAM mp2);
29
30// Data declarations
31extern ULONG FM3UL;
32extern HWND LastDir;
33extern HWND TreeCnrMenu;
34extern INT TreesortFlags;
35extern INT driveserial[26];
36extern BOOL fDCOpens;
37extern BOOL fDummy;
38extern BOOL fFollowTree;
39extern BOOL fTopDir;
40extern BOOL fLVMGui;
41extern BOOL fDFSee;
42extern BOOL fFDisk;
43extern BOOL fMiniLVM;
44extern BOOL fLVM;
45extern HPOINTER hptrDunno;
46extern HWND hwndMainMenu;
47
48#endif // TREECNR_H
Note: See TracBrowser for help on using the repository browser.