Last change
on this file since 1878 was 1877, checked in by Gregg Young, 10 years ago |
Remove debug code
|
-
Property svn:eolstyle
set to
native
-
Property svn:keywords
set to
Id
|
File size:
1.3 KB
|
Rev | Line | |
---|
[1165] | 1 |
|
---|
| 2 | /***********************************************************************
|
---|
| 3 |
|
---|
[1197] | 4 | $Id: flesh.h 1877 2015-10-11 21:43:27Z gyoung $
|
---|
[1165] | 5 |
|
---|
[1856] | 6 | Drive tree container management
|
---|
[1165] | 7 |
|
---|
[1197] | 8 | Copyright (c) 1993-98 M. Kimes
|
---|
[1856] | 9 | Copyright (c) 2008, 2015 Steven H. Levine
|
---|
[1165] | 10 |
|
---|
[1856] | 11 | 07 Aug 15 SHL Rework to use AddFleshWorkRequest rather than direct calls to Stubby/Flesh/Unflesh
|
---|
[1858] | 12 | 19 Aug 15 SHL Allow WaitFleshWorkListEmpty to wait for dependent items
|
---|
[1863] | 13 | 22 Aug 15 GKY Remove recurse scan code.
|
---|
[1874] | 14 | 27 Sep 15 GKY DosSleep times in WaitFleshWorkListEmpty set by caller
|
---|
[1876] | 15 | 10 Oct 15 GKY Don't use Flesh thread for floppy drive scans fix them getting mistakenly identified
|
---|
| 16 | as directories and add nonexistent subdirectories.
|
---|
[1165] | 17 |
|
---|
| 18 | ***********************************************************************/
|
---|
| 19 |
|
---|
| 20 | #if !defined(FLESH_H)
|
---|
| 21 | #define FLESH_H
|
---|
| 22 |
|
---|
[1856] | 23 | BOOL StartFleshWorkThread(VOID);
|
---|
[1165] | 24 |
|
---|
[1863] | 25 | typedef enum {eStubby, eFlesh, eFleshEnv, eUnFlesh} FLESHWORKACTION;
|
---|
[1856] | 26 |
|
---|
| 27 | BOOL IsFleshWorkListEmpty();
|
---|
| 28 |
|
---|
[1860] | 29 | VOID SetFleshFocusPath(PCSZ pszPath);
|
---|
[1876] | 30 | BOOL Flesh(HWND hwndCnr, PCNRITEM pciParent);
|
---|
| 31 | VOID UnFlesh(HWND hwndCnr, PCNRITEM pciParent);
|
---|
[1874] | 32 | VOID WaitFleshWorkListEmpty(PCSZ pszDirName, ULONG ulSleep);
|
---|
[1856] | 33 | BOOL AddFleshWorkRequest(HWND hwndCnr, PCNRITEM pci, FLESHWORKACTION action);
|
---|
| 34 |
|
---|
[1207] | 35 | // Data declarations
|
---|
| 36 | extern ULONG NoBrokenNotify;
|
---|
| 37 | extern BOOL fFilesInTree;
|
---|
[1165] | 38 |
|
---|
[1856] | 39 |
|
---|
[1165] | 40 | #endif // FLESH_H
|
---|
Note:
See
TracBrowser
for help on using the repository browser.